From da463c9eaf431be86ad7c78d5f71888e3d2c7556 Mon Sep 17 00:00:00 2001 From: Veal98 <1912420914@qq.com> Date: Mon, 25 Jan 2021 17:49:40 +0800 Subject: [PATCH] Complete like functionn --- README.md | 23 +- docs/160-统一处理异常.md | 46 + docs/170-统一记录日志.md | 35 + docs/180-点赞.md | 224 + docs/190-我收到的赞.md | 169 + .../error/log-error-2021-01-23.0.log | 406 ++ log/community/info/log-info-2021-01-24.0.log | 656 +++ log/community/log_error.log | 1036 ++-- log/community/log_info.log | 4920 ++++++++++++++--- log/community/log_warn.log | 870 +-- log/community/warn/log-warn-2021-01-24.0.log | 320 ++ pom.xml | 2 +- .../community/aspect/ServiceLogAspect.java | 43 + .../greate/community/config/RedisConfig.java | 34 + .../controller/DiscussPostController.java | 35 +- .../community/controller/HomeController.java | 25 +- .../community/controller/LikeController.java | 52 + .../controller/MessageController.java | 2 + .../community/controller/UserController.java | 27 + .../controller/advice/ExceptionAdvice.java | 43 + .../greate/community/service/LikeService.java | 89 + .../greate/community/util/RedisKeyUtil.java | 25 + src/main/resources/application.properties | 4 + src/main/resources/static/img/404.png | Bin 61878 -> 27828 bytes src/main/resources/static/img/500.png | Bin 0 -> 34589 bytes src/main/resources/static/img/error.png | Bin 31851 -> 0 bytes .../img/{greateCommunityLogo.png => logo.png} | Bin src/main/resources/static/js/discuss.js | 17 + src/main/resources/templates/error/404.html | 91 + src/main/resources/templates/error/500.html | 91 + src/main/resources/templates/index.html | 28 +- .../templates/site/discuss-detail.html | 32 +- .../resources/templates/site/error/404.html | 135 - .../resources/templates/site/error/500.html | 135 - .../templates/site/letter-detail.html | 10 +- src/main/resources/templates/site/letter.html | 13 +- src/main/resources/templates/site/login.html | 1 + .../templates/site/operate-result.html | 1 + .../resources/templates/site/profile.html | 76 +- .../resources/templates/site/register.html | 1 + .../resources/templates/site/setting.html | 1 + 41 files changed, 7962 insertions(+), 1756 deletions(-) create mode 100644 docs/160-统一处理异常.md create mode 100644 docs/170-统一记录日志.md create mode 100644 docs/180-点赞.md create mode 100644 docs/190-我收到的赞.md create mode 100644 log/community/error/log-error-2021-01-23.0.log create mode 100644 log/community/info/log-info-2021-01-24.0.log create mode 100644 log/community/warn/log-warn-2021-01-24.0.log create mode 100644 src/main/java/com/greate/community/aspect/ServiceLogAspect.java create mode 100644 src/main/java/com/greate/community/config/RedisConfig.java create mode 100644 src/main/java/com/greate/community/controller/LikeController.java create mode 100644 src/main/java/com/greate/community/controller/advice/ExceptionAdvice.java create mode 100644 src/main/java/com/greate/community/service/LikeService.java create mode 100644 src/main/java/com/greate/community/util/RedisKeyUtil.java create mode 100644 src/main/resources/static/img/500.png delete mode 100644 src/main/resources/static/img/error.png rename src/main/resources/static/img/{greateCommunityLogo.png => logo.png} (100%) create mode 100644 src/main/resources/static/js/discuss.js create mode 100644 src/main/resources/templates/error/404.html create mode 100644 src/main/resources/templates/error/500.html delete mode 100644 src/main/resources/templates/site/error/404.html delete mode 100644 src/main/resources/templates/site/error/500.html diff --git a/README.md b/README.md index b34d20c8..81e1159e 100644 --- a/README.md +++ b/README.md @@ -56,29 +56,36 @@ - 发布帖子(过滤敏感词) - 分页显示帖子 - 查看帖子详情 -- [x] 评论功能(过滤敏感词) +- [x] 评论模块(过滤敏感词) - 发布对帖子的评论(过滤敏感词) - 分页显示评论 - 发布对评论的回复(过滤敏感词) -- [x] 私信功能 +- [x] 私信模块 - 发送私信(过滤敏感词) - 发送列表(分页显示发出的私信) - 私信列表(分页显示收到的私信) - 私信详情 -- [ ] 点赞功能 +- [x] 统一处理异常(404、500) + - 普通请求异常 + - 异步请求异常 +- [x] 统一记录日志 +- [x] 点赞模块 - 点赞 - - 我收到的赞 -- [ ] 关注功能 + - 获赞 +- [ ] 关注模块 - 关注 - 取消关注 - 关注列表 - 粉丝列表 -- [ ] 系统通知功能 +- [ ] 系统通知模块 - 管理员发送系统通知 - 用户接收系统通知 -- [ ] 搜索功能 +- [ ] 搜索模块 - [ ] 权限控制 -- [ ] 管理员的置顶、加精、删除帖子功能 +- [ ] 管理员模块 + - 置顶帖子 + - 加精帖子 + - 删除帖子 - [ ] 网站数据统计 - [ ] 热帖排行 - [ ] 文件上传 diff --git a/docs/160-统一处理异常.md b/docs/160-统一处理异常.md new file mode 100644 index 00000000..159880d9 --- /dev/null +++ b/docs/160-统一处理异常.md @@ -0,0 +1,46 @@ +# 统一处理异常 + +--- + +首先 SpringBoot 自动对我们的异常做了一个**表面处理**,我们只要遵守它的约定: + +- 以错误码命名文件,放在 `/templates/error` 文件夹下即可 + + + +当然,这种处理仅仅是页面的跳转,对用户来说相对友好,但是对于开发者来说并没有啥用,500 出现的原因是服务端错误,我们需要对出错的具体原因进行一个统一的日志记录 + +![](https://gitee.com/veal98/images/raw/master/img/20210125104538.png) + +```java +/** + * 处理服务端异常(500) + */ +@ControllerAdvice(annotations = Controller.class) // 扫描带有 @Controller 的组件 +public class ExceptionAdvice { + + private static final Logger logger = LoggerFactory.getLogger(ExceptionAdvice.class); + + @ExceptionHandler({Exception.class}) + public void handleException(Exception e, HttpServletRequest request, HttpServletResponse response) throws IOException { + logger.error("服务器发生异常:" + e.getMessage()); + for (StackTraceElement element : e.getStackTrace()) { + logger.error(element.toString()); + } + // 区分异步请求和普通请求 + String xRequestedWith = request.getHeader("x-requested-with"); + if ("XMLHttpRequest".equals(xRequestedWith)) { + // 异步请求(希望返回的是 JSON 数据) + response.setContentType("application/plain;charset=utf-8"); + PrintWriter writer = response.getWriter(); + writer.write(CommunityUtil.getJSONString(1, "服务器异常")); + } + else { + // 普通请求(希望返回的是一个网页) + response.sendRedirect(request.getContextPath() + "/error"); + } + } + +} +``` + diff --git a/docs/170-统一记录日志.md b/docs/170-统一记录日志.md new file mode 100644 index 00000000..e943b257 --- /dev/null +++ b/docs/170-统一记录日志.md @@ -0,0 +1,35 @@ +# 统一记录日志 + +--- + +AOP + +![](https://gitee.com/veal98/images/raw/master/img/20210125115403.png) + +```java +@Component +@Aspect +public class ServiceLogAspect { + + private static final Logger logger = LoggerFactory.getLogger(ServiceLogAspect.class); + + @Pointcut("execution(* com.greate.community.service.*.*(..))") + public void pointcut() { + + } + + @Before("pointcut()") + public void before(JoinPoint joinPoint) { + // 用户[IP 地址], 在某个时间访问了 [com.greate.community.service.xxx] + ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); + HttpServletRequest request = attributes.getRequest(); + String ip = request.getRemoteHost(); + String time = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); + String target = joinPoint.getSignature().getDeclaringTypeName() + "." + joinPoint.getSignature().getName(); + logger.info(String.format("用户[%s], 在[%s], 访问了[%s].", ip, time, target)); + } + +} + +``` + diff --git a/docs/180-点赞.md b/docs/180-点赞.md new file mode 100644 index 00000000..767aef01 --- /dev/null +++ b/docs/180-点赞.md @@ -0,0 +1,224 @@ +# 点赞 + +--- + +点赞: + +- 支持对帖子、评论/回复点赞 +- 第 1 次点赞,第 2 次取消点赞 +- 首页统计帖子的点赞数量 +- 详情页统计帖子和评论/回复的点赞数量 +- 详情页显示用户的点赞状态(赞过了则显示已赞) + +## Redis 配置 + +导包、配置端口等 + +```properties +# Redis +spring.redis.database = 11 +spring.redis.host = localhost +spring.redis.port = 6379 +``` + +Redis 配置类 + +```java +/** + * Redis 配置类 + */ +@Configuration +public class RedisConfig { + + @Bean + public RedisTemplate redisTemplate(RedisConnectionFactory factory) { + RedisTemplate template = new RedisTemplate<>(); + template.setConnectionFactory(factory); + + // 设置 key 的序列化的方式 + template.setKeySerializer(RedisSerializer.string()); + // 设置 value 的序列化的方式 + template.setValueSerializer(RedisSerializer.json()); + // 设置 hash 的 key 的序列化的方式 + template.setHashKeySerializer(RedisSerializer.string()); + // 设置 hash 的 value 的序列化的方式 + template.setHashValueSerializer(RedisSerializer.json()); + + template.afterPropertiesSet(); + + return template; + } + +} +``` + +动态生成 Redis 的 key: + +我们将点赞相关信息存入 set 中。其中,key 命名为 `like:entity:entityType:entityId`,value 即存储点赞用户的 id。比如 key = `like:entity:2:246` value = `11` 表示用户 11 对实体类型 2 即评论进行了点赞,该评论的 id 是 246 + +```java +/** + * 生成 Redis 的 key + */ +public class RedisKeyUtil { + + private static final String SPLIT = ":"; + private static final String PREFIX_ENTITY_LIKE = "like:entity"; + + // 某个实体(帖子、评论/回复)的赞 + // like:entity:entityType:entityId -> set(userId) + // 谁给这个实体点了赞,就将这个用户的id存到这个实体对应的集合里 + public static String getEntityLikeKey(int entityType, int entityId) { + return PREFIX_ENTITY_LIKE + SPLIT + entityType + SPLIT + entityId; + } + +} +``` + +## Service + +```java +/** + * 点赞相关 + */ +@Service +public class LikeService { + + @Autowired + private RedisTemplate redisTemplate; + + /** + * 点赞 + * @param userId + * @param entityType + * @param entityId + */ + public void like(int userId, int entityType, int entityId) { + String entityLikeKey = RedisKeyUtil.getEntityLikeKey(entityType, entityId); + // 判断用户是否已经点过赞了 + boolean isMember = redisTemplate.opsForSet().isMember(entityLikeKey, userId); + if (isMember) { + // 如果用户已经点过赞,点第二次则取消赞 + redisTemplate.opsForSet().remove(entityLikeKey, userId); + } + else { + redisTemplate.opsForSet().add(entityLikeKey, userId); + } + } + + /** + * 查询某实体被点赞的数量 + * @param entityType + * @param entityId + * @return + */ + public long findEntityLikeCount(int entityType, int entityId) { + String entityLikeKey = RedisKeyUtil.getEntityLikeKey(entityType, entityId); + return redisTemplate.opsForSet().size(entityLikeKey); + } + + /** + * 查询某个用户对某个实体的点赞状态(是否已赞) + * @param userId + * @param entityType + * @param entityId + * @return 1:已赞,0:未赞 + */ + public int findEntityLikeStatus(int userId, int entityType, int entityId) { + String entityLikeKey = RedisKeyUtil.getEntityLikeKey(entityType, entityId); + return redisTemplate.opsForSet().isMember(entityLikeKey, userId) ? 1 : 0; + } + +} +``` + +## 表现层(Controller 和前端) + +在首页进行查询的时候,添加对帖子点赞数量查询 + +`HomeController` + +```java +long likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_POST, post.getId()); +map.put("likeCount", likeCount); +``` + +在消息列表进行查询的时候,添加点赞功能,并对帖子、评论的点赞数量以及目前登录用户的点赞状态进行查询 + +`LikeController` + +```java +/** + * 点赞 + */ +@Controller +public class LikeController { + + @Autowired + private HostHolder hostHolder; + + @Autowired + private LikeService likeService; + + @PostMapping("/like") + @ResponseBody + public String like(int entityType, int entityId) { + User user = hostHolder.getUser(); + // 点赞 + likeService.like(user.getId(), entityType, entityId); + // 点赞数量 + long likeCount = likeService.findEntityLikeCount(entityType, entityId); + // 点赞状态 + int likeStatus = likeService.findEntityLikeStatus(user.getId(), entityType, entityId); + + Map map = new HashMap<>(); + map.put("likeCount", likeCount); + map.put("likeStatus", likeStatus); + + return CommunityUtil.getJSONString(0, null, map); + } + +} +``` + +前端消息列表界面 `discuss-detail.html`: + +```html + + + +``` + +对应的 `discuss.js` + +```java +function like(btn, entityType, entityId) { + $.post( + CONTEXT_PATH + "/like", + {"entityType":entityType, "entityId":entityId}, + function(data) { + data = $.parseJSON(data); + if (data.code == 0) { + $(btn).children("i").text(data.likeCount); + $(btn).children("b").text(data.likeStatus == 1 ? '已赞' : '赞'); + } + else { + alert(data.msg); + } + } + ) +} +``` + +对应的 `DiscussPostController` : + +```java +// 点赞数量 +long likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_POST, discussPostId); +model.addAttribute("likeCount", likeCount); +// 当前登录用户的点赞状态 +int likeStatus = hostHolder.getUser() == null ? 0 : + likeService.findEntityLikeStatus(hostHolder.getUser().getId(), ENTITY_TYPE_POST, discussPostId); +model.addAttribute("likeStatus", likeStatus); +``` + diff --git a/docs/190-我收到的赞.md b/docs/190-我收到的赞.md new file mode 100644 index 00000000..13d59ada --- /dev/null +++ b/docs/190-我收到的赞.md @@ -0,0 +1,169 @@ +# 我收到的赞 + +--- + + - 重构点赞功能(使用 Redis 进行事务管理) + + - 以用户为 key,查询点赞数量 + - increment(key) / decrement(key) + + > 注意 Redis 的事务管理中不要写查询语句,因为 Redis 会把事务存放在队列中,只有当事务提交之后才会进行统一的提交。 + + - 开发个人主页 + +## 工具类 + +在生成 Redis 的 key 工具类中添加一个被赞用户的 key + +```java +/** + * 生成 Redis 的 key + */ +public class RedisKeyUtil { + + private static final String SPLIT = ":"; + private static final String PREFIX_ENTITY_LIKE = "like:entity"; + private static final String PREFIX_USER_LIKE = "like:user"; + + // 某个实体(帖子、评论/回复)的赞 + // like:entity:entityType:entityId -> set(userId) + // 谁给这个实体点了赞,就将这个用户的id存到这个实体对应的集合里 + public static String getEntityLikeKey(int entityType, int entityId) { + return PREFIX_ENTITY_LIKE + SPLIT + entityType + SPLIT + entityId; + } + + // 某个用户的赞(被赞) + // like:user:userId -> int + public static String getUserLikeKey(int userId) { + return PREFIX_ENTITY_LIKE + SPLIT + userId; + } + +} +``` + +## Service + +重构点赞方法,将被赞的帖子/评论的作者信息添加进去 + +```java +/** + * 点赞 + * @param userId 点赞的用户 id + * @param entityType + * @param entityId + * @param entityUserId 被赞的帖子/评论的作者 id + */ +public void like(int userId, int entityType, int entityId, int entityUserId) { + redisTemplate.execute(new SessionCallback() { + @Override + public Object execute(RedisOperations redisOperations) throws DataAccessException { + String entityLikeKey = RedisKeyUtil.getEntityLikeKey(entityType, entityId); + String userLikeKey = RedisKeyUtil.getUserLikeKey(entityUserId); + + // 判断用户是否已经点过赞了 + boolean isMember = redisOperations.opsForSet().isMember(entityLikeKey, userId); + + redisOperations.multi(); // 开启事务 + + if (isMember) { + // 如果用户已经点过赞,点第二次则取消赞 + redisOperations.opsForSet().remove(entityLikeKey, userId); + redisOperations.opsForValue().decrement(userLikeKey); + } + else { + redisTemplate.opsForSet().add(entityLikeKey, userId); + redisOperations.opsForValue().increment(userLikeKey); + } + + return redisOperations.exec(); // 提交事务 + } + }); +} +``` + + + +```java +/** + * 查询某个用户获得赞数量 + * @param userId + * @return + */ +public int findUserLikeCount(int userId) { + String userLikeKey = RedisKeyUtil.getUserLikeKey(userId); + Integer count = (Integer) redisTemplate.opsForValue().get(userLikeKey); + return count == null ? 0 : count; +} +``` + +## Controller + +添加一个被赞帖子/评论的作者 id 即可: + +```java +/** + * 点赞 + * @param entityType + * @param entityId + * @param entityUserId 赞的帖子/评论的作者 id + * @return + */ +@PostMapping("/like") +@ResponseBody +public String like(int entityType, int entityId, int entityUserId) { + User user = hostHolder.getUser(); + // 点赞 + likeService.like(user.getId(), entityType, entityId, entityUserId); + // 点赞数量 + long likeCount = likeService.findEntityLikeCount(entityType, entityId); + // 点赞状态 + int likeStatus = likeService.findEntityLikeStatus(user.getId(), entityType, entityId); + + Map map = new HashMap<>(); + map.put("likeCount", likeCount); + map.put("likeStatus", likeStatus); + + return CommunityUtil.getJSONString(0, null, map); +} +``` + +## 前端 + +添加一个被赞帖子/评论的作者 id 即可 + +```java + + + +``` + +修改对应的 `discuss.js` + +```js +function like(btn, entityType, entityId, entityUserId) { + $.post( + CONTEXT_PATH + "/like", + {"entityType":entityType, "entityId":entityId, "entityUserId":entityUserId}, + function(data) { + data = $.parseJSON(data); + if (data.code == 0) { + $(btn).children("i").text(data.likeCount); + $(btn).children("b").text(data.likeStatus == 1 ? '已赞' : '赞'); + } + else { + alert(data.msg); + } + + } + ) +} +``` + +修改前端用户头像的链接 + +```html + + 用户头像 + +``` + diff --git a/log/community/error/log-error-2021-01-23.0.log b/log/community/error/log-error-2021-01-23.0.log new file mode 100644 index 00000000..3ea55784 --- /dev/null +++ b/log/community/error/log-error-2021-01-23.0.log @@ -0,0 +1,406 @@ +2021-01-23 12:53:56,693 ERROR [restartedMain] o.s.b.SpringApplication [SpringApplication.java:856] Application run failed +org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'webMvcConfig': Unsatisfied dependency expressed through field 'loginTicketInterceptor'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'loginTicketInterceptor': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userService': Unsatisfied dependency expressed through field 'userMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:643) + at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1415) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:944) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:923) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:588) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:144) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:767) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:759) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:426) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:326) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1311) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1300) + 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.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'loginTicketInterceptor': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userService': Unsatisfied dependency expressed through field 'userMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:643) + at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1415) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) + ... 25 common frames omitted +Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userService': Unsatisfied dependency expressed through field 'userMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:643) + at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1415) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) + ... 38 common frames omitted +Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1401) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) + at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) + ... 51 common frames omitted +Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:658) + at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:638) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1336) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1179) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:571) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) + at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) + ... 62 common frames omitted +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) + ... 75 common frames omitted +Caused by: org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.mybatis.spring.SqlSessionFactoryBean.buildSqlSessionFactory(SqlSessionFactoryBean.java:612) + at org.mybatis.spring.SqlSessionFactoryBean.afterPropertiesSet(SqlSessionFactoryBean.java:490) + at org.mybatis.spring.SqlSessionFactoryBean.getObject(SqlSessionFactoryBean.java:632) + at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration.sqlSessionFactory(MybatisAutoConfiguration.java:180) + at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$919d6021.CGLIB$sqlSessionFactory$1() + at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$919d6021$$FastClassBySpringCGLIB$$76fe3b8a.invoke() + at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244) + at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:331) + at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$919d6021.sqlSessionFactory() + 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.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) + ... 76 common frames omitted +Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:123) + at org.apache.ibatis.builder.xml.XMLMapperBuilder.parse(XMLMapperBuilder.java:95) + at org.mybatis.spring.SqlSessionFactoryBean.buildSqlSessionFactory(SqlSessionFactoryBean.java:610) + ... 89 common frames omitted +Caused by: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields + at org.apache.ibatis.session.Configuration$StrictMap.put(Configuration.java:992) + at org.apache.ibatis.session.Configuration$StrictMap.put(Configuration.java:948) + at org.apache.ibatis.builder.xml.XMLMapperBuilder.sqlElement(XMLMapperBuilder.java:351) + at org.apache.ibatis.builder.xml.XMLMapperBuilder.sqlElement(XMLMapperBuilder.java:342) + at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:120) + ... 91 common frames omitted +2021-01-23 12:56:39,124 ERROR [http-nio-8080-exec-9] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'entity_type' not found. Available parameters are [offset, entityType, index, entityId, param3, param4, param1, param2]] with root cause +org.apache.ibatis.binding.BindingException: Parameter 'entity_type' not found. Available parameters are [offset, entityType, index, entityId, param3, param4, param1, param2] + at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) + at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) + at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) + at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) + at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) + at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:88) + at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) + at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) + 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426) + at com.sun.proxy.$Proxy66.selectList(Unknown Source) + at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223) + at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147) + at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80) + at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) + at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) + at com.sun.proxy.$Proxy74.selectCommentByEntity(Unknown Source) + at com.greate.community.service.CommentService.findCommentByEntity(CommentService.java:25) + at com.greate.community.controller.DiscussPostController.getDiscussPost(DiscussPostController.java:83) + 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-23 15:00:15,540 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.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int).] with root cause +org.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int). + at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:102) + at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) + at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) + at com.sun.proxy.$Proxy71.insertComment(Unknown Source) + at com.greate.community.service.CommentService.addComment(CommentService.java:67) + at com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) + at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) + at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) + at com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$d7b63501.addComment() + at com.greate.community.controller.CommentController.addComment(CommentController.java:37) + 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-23 15:08:15,661 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.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int).] with root cause +org.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int). + at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:102) + at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) + at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) + at com.sun.proxy.$Proxy71.insertComment(Unknown Source) + at com.greate.community.service.CommentService.addComment(CommentService.java:67) + at com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) + at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) + at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) + at com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$bb803a75.addComment() + at com.greate.community.controller.CommentController.addComment(CommentController.java:38) + 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-23 15:09:47,168 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.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int).] with root cause +org.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int). + at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:102) + at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) + at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) + at com.sun.proxy.$Proxy71.insertComment(Unknown Source) + at com.greate.community.service.CommentService.addComment(CommentService.java:67) + at com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() + at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) + at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) + at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) + at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) + at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) + at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) + at com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$bb803a75.addComment() + at com.greate.community.controller.CommentController.addComment(CommentController.java:38) + 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) diff --git a/log/community/info/log-info-2021-01-24.0.log b/log/community/info/log-info-2021-01-24.0.log new file mode 100644 index 00000000..1fe6587f --- /dev/null +++ b/log/community/info/log-info-2021-01-24.0.log @@ -0,0 +1,656 @@ +2021-01-24 11:45:56,724 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24168 (started by 19124 in E:\GreateCommunity) +2021-01-24 11:45:56,735 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 11:45:57,821 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:45:57,826 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 11:45:57,855 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 20 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 11:45:57,864 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:45:57,866 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 11:45:57,877 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 11:45:57,902 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:45:57,904 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 11:45:57,925 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2021-01-24 11:45:58,374 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 11:45:58,465 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 11:45:58,467 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:45:58,467 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:45:58,467 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:45:58,468 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 11:45:58,468 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 11:45:58,469 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:45:58,538 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-24 11:45:58,994 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-24 11:45:58,999 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-24 11:46:00,116 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 11:46:00,297 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 11:46:04,400 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 11:46:04,400 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 11:46:04,401 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 11:46:04,669 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 8.584 seconds (JVM running for 10.481) +2021-01-24 11:46:05,089 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-24 11:47:13,814 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 3164 (started by 19124 in E:\GreateCommunity) +2021-01-24 11:47:13,816 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 11:47:14,326 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:47:14,329 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 11:47:14,344 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 11:47:14,348 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:47:14,349 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 11:47:14,354 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 11:47:14,367 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:47:14,368 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 11:47:14,379 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 11:47:14,611 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 11:47:14,670 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 11:47:14,671 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:47:14,671 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:47:14,671 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:47:14,672 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 11:47:14,672 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 11:47:14,672 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:47:14,716 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-24 11:47:14,962 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-24 11:47:14,965 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-24 11:47:15,710 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 11:47:15,809 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 11:47:18,167 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 11:47:18,167 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 11:47:18,167 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 11:47:18,418 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 4.923 seconds (JVM running for 5.791) +2021-01-24 11:47:18,684 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 11:47:18,939 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 11:47:19,082 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-24 11:47:19,085 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... +2021-01-24 11:47:19,092 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. +2021-01-24 11:48:59,409 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 6272 (started by 19124 in E:\GreateCommunity) +2021-01-24 11:48:59,412 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 11:48:59,981 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:48:59,984 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 11:48:59,997 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 11:49:00,002 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:49:00,003 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 11:49:00,009 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 11:49:00,021 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 11:49:00,023 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 11:49:00,035 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-24 11:49:00,264 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 11:49:00,324 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 11:49:00,326 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:49:00,326 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:49:00,326 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:49:00,327 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 11:49:00,327 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 11:49:00,327 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 11:49:00,373 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-24 11:49:00,615 INFO [main] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-24 11:49:00,618 INFO [main] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-24 11:49:01,318 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 11:49:01,422 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 11:49:04,067 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 11:49:04,068 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 11:49:04,068 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 11:49:04,333 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 5.256 seconds (JVM running for 6.166) +2021-01-24 11:49:04,652 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 11:49:04,949 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 11:49:05,063 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-24 11:49:05,066 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... +2021-01-24 11:49:05,071 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. +2021-01-24 12:03:08,772 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24392 (started by 19124 in E:\GreateCommunity) +2021-01-24 12:03:08,776 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 12:03:09,332 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:03:09,335 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 12:03:09,352 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 12:03:09,357 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:03:09,358 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 12:03:09,365 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 12:03:09,381 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:03:09,384 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 12:03:09,400 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2021-01-24 12:03:09,733 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 12:03:09,816 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 12:03:09,818 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:03:09,818 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:03:09,818 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:03:09,819 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 12:03:09,819 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 12:03:09,820 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:03:09,887 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-24 12:03:10,234 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-24 12:03:10,238 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-24 12:03:11,280 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 12:03:11,468 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 12:03:15,628 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 12:03:15,628 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 12:03:15,629 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 12:03:15,948 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 7.522 seconds (JVM running for 8.458) +2021-01-24 12:03:16,464 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 12:03:16,822 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 12:03:16,977 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-24 12:03:16,979 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... +2021-01-24 12:03:16,985 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. +2021-01-24 12:37:53,908 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22336 (started by 19124 in E:\GreateCommunity) +2021-01-24 12:37:53,910 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 12:37:54,623 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:37:54,626 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 12:37:54,644 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 13 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 12:37:54,650 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:37:54,652 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 12:37:54,658 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 12:37:54,675 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:37:54,677 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 12:37:54,690 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-24 12:37:54,996 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 12:37:55,052 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 12:37:55,053 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:37:55,054 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:37:55,054 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:37:55,054 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 12:37:55,055 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 12:37:55,055 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:37:55,111 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-24 12:37:55,415 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-24 12:37:55,418 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-24 12:37:55,603 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13732 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 12:37:55,606 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 12:37:55,649 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 12:37:55,650 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 12:37:56,244 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:37:56,246 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 12:37:56,263 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 12 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 12:37:56,268 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:37:56,269 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 12:37:56,276 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 12:37:56,293 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 12:37:56,294 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 12:37:56,308 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-24 12:37:56,352 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 12:37:56,533 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 12:37:56,595 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 12:37:56,674 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 12:37:56,676 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 12:37:56,677 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 12:37:56,678 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:37:56,679 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 12:37:56,680 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 12:37:56,681 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:37:56,682 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 12:37:56,754 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-24 12:37:56,991 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-24 12:37:56,994 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-24 12:37:57,426 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 12:37:57,440 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 12:37:57,441 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 12:37:57,441 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 12:37:57,609 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 12:37:57,609 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1958 ms +2021-01-24 12:37:58,413 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 12:37:58,496 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 12:37:59,997 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 12:37:59,998 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 12:37:59,998 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 12:38:00,271 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 6.694 seconds (JVM running for 7.583) +2021-01-24 12:38:00,463 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 12:38:00,464 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 12:38:00,464 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 12:38:00,641 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 12:38:00,761 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 12:38:00,784 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 12:38:00,799 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 12:38:00,813 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.613 seconds (JVM running for 6.607) +2021-01-24 12:38:01,012 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 12:38:01,210 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-24 12:38:01,213 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... +2021-01-24 12:38:01,221 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. +2021-01-24 12:38:18,418 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 12:38:18,418 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 12:38:18,419 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 12:38:26,590 INFO [http-nio-8080-exec-10] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 12:38:26,815 INFO [http-nio-8080-exec-10] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 13:01:14,510 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 16520 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 13:01:14,514 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 13:01:14,564 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 13:01:14,565 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 13:01:15,421 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 13:01:15,423 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 13:01:15,436 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 13:01:15,440 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 13:01:15,441 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 13:01:15,446 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 13:01:15,457 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 13:01:15,458 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 13:01:15,471 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-24 13:01:15,679 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 13:01:15,736 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 13:01:15,737 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 13:01:15,738 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 13:01:15,738 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 13:01:15,782 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-24 13:01:15,918 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-24 13:01:15,920 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-24 13:01:16,165 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 13:01:16,172 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 13:01:16,173 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 13:01:16,173 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 13:01:16,262 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 13:01:16,262 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1696 ms +2021-01-24 13:01:16,763 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 13:01:16,819 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 13:01:18,594 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 13:01:18,594 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 13:01:18,594 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 13:01:18,809 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 13:01:18,823 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 13:01:18,832 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 13:01:18,840 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.874 seconds (JVM running for 6.142) +2021-01-24 13:01:23,026 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 13:01:23,027 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 13:01:23,028 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 13:01:23,048 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 13:01:23,166 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 15:25:20,631 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 16280 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 15:25:20,633 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 15:25:20,665 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 15:25:20,666 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 15:25:21,174 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:25:21,176 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:25:21,185 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 15:25:21,188 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:25:21,188 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:25:21,192 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 15:25:21,201 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:25:21,202 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 15:25:21,212 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 15:25:21,369 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 15:25:21,413 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 15:25:21,415 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:25:21,416 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:25:21,416 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:25:21,416 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 15:25:21,417 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:25:21,417 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:25:21,417 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:25:21,447 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-24 15:25:21,544 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-24 15:25:21,546 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-24 15:25:21,728 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 15:25:21,734 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 15:25:21,734 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 15:25:21,735 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 15:25:21,813 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 15:25:21,814 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1147 ms +2021-01-24 15:25:22,278 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 15:25:22,331 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 15:25:24,147 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 15:25:24,148 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 15:25:24,148 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 15:25:24,302 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 15:25:24,317 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 15:25:24,326 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 15:25:24,335 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.075 seconds (JVM running for 4.935) +2021-01-24 15:25:49,077 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 15:25:49,078 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 15:25:49,079 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 15:25:49,103 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 15:25:49,236 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 15:34:12,825 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 6552 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 15:34:12,828 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 15:34:12,860 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 15:34:12,860 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 15:34:13,345 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:34:13,347 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:34:13,357 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 15:34:13,360 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:34:13,360 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:34:13,364 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 15:34:13,373 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:34:13,374 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 15:34:13,384 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 15:34:13,543 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 15:34:13,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 15:34:13,588 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:34:13,588 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:34:13,624 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-24 15:34:13,724 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-24 15:34:13,726 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-24 15:34:13,923 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 15:34:13,929 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 15:34:13,930 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 15:34:13,930 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 15:34:14,009 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 15:34:14,010 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1149 ms +2021-01-24 15:34:14,443 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 15:34:14,494 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 15:34:16,205 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 15:34:16,206 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 15:34:16,206 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 15:34:16,380 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 15:34:16,395 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 15:34:16,403 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 15:34:16,412 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.933 seconds (JVM running for 4.724) +2021-01-24 15:34:23,687 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 15:34:23,687 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 15:34:23,688 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 15:34:23,709 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 15:34:23,832 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 15:42:39,257 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13188 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 15:42:39,260 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 15:42:39,294 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 15:42:39,294 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 15:42:39,765 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:42:39,767 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:42:39,776 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 15:42:39,779 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:42:39,780 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:42:39,783 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 15:42:39,792 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:42:39,793 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 15:42:39,803 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 15:42:39,954 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 15:42:39,993 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 15:42:39,994 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:42:39,994 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:42:40,027 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-24 15:42:40,123 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-24 15:42:40,125 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-24 15:42:40,315 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 15:42:40,320 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 15:42:40,321 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 15:42:40,321 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 15:42:40,396 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 15:42:40,397 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1102 ms +2021-01-24 15:42:40,810 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 15:42:40,861 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 15:42:42,554 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 15:42:42,554 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 15:42:42,554 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 15:42:42,748 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 15:42:42,762 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 15:42:42,770 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 15:42:42,779 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.863 seconds (JVM running for 4.609) +2021-01-24 15:42:45,753 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 15:42:45,754 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 15:42:45,755 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 15:42:45,774 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 15:42:45,892 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 15:45:05,824 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25820 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 15:45:05,827 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 15:45:05,862 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 15:45:05,862 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 15:45:06,327 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:45:06,329 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:45:06,338 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 15:45:06,341 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:45:06,341 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:45:06,345 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 15:45:06,353 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:45:06,354 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 15:45:06,363 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 2 ms. Found 0 Redis repository interfaces. +2021-01-24 15:45:06,514 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 15:45:06,552 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 15:45:06,553 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:45:06,553 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:45:06,553 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:45:06,585 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-24 15:45:06,681 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-24 15:45:06,683 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-24 15:45:06,874 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 15:45:06,880 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 15:45:06,880 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 15:45:06,881 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 15:45:06,954 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 15:45:06,954 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1091 ms +2021-01-24 15:45:07,377 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 15:45:07,424 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 15:45:09,091 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 15:45:09,092 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 15:45:09,092 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 15:45:09,256 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 15:45:09,269 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 15:45:09,277 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 15:45:09,285 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.785 seconds (JVM running for 4.654) +2021-01-24 15:45:13,702 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 15:45:13,702 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 15:45:13,703 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 15:45:13,723 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 15:45:13,839 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 15:45:56,253 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 14856 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 15:45:56,256 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 15:45:56,291 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 15:45:56,292 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 15:45:56,788 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:45:56,790 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:45:56,799 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 15:45:56,802 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:45:56,803 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 15:45:56,806 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 15:45:56,815 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 15:45:56,815 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 15:45:56,824 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 2 ms. Found 0 Redis repository interfaces. +2021-01-24 15:45:56,976 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 15:45:57,014 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 15:45:57,015 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:45:57,015 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:45:57,015 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 15:45:57,048 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-24 15:45:57,146 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-24 15:45:57,149 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-24 15:45:57,344 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 15:45:57,350 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 15:45:57,350 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 15:45:57,351 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 15:45:57,424 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 15:45:57,425 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1132 ms +2021-01-24 15:45:57,836 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 15:45:57,886 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 15:45:59,551 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 15:45:59,551 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 15:45:59,551 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 15:45:59,723 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 15:45:59,737 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 15:45:59,745 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 15:45:59,754 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.826 seconds (JVM running for 4.655) +2021-01-24 15:46:33,060 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 15:46:33,060 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 15:46:33,061 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-24 15:46:33,079 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 15:46:33,197 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 16:19:09,987 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 3480 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 16:19:09,991 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 16:19:10,039 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 16:19:10,040 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 16:19:10,676 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:19:10,678 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:19:10,689 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 16:19:10,693 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:19:10,694 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:19:10,698 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 16:19:10,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:19:10,709 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 16:19:10,721 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 16:19:10,915 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 16:19:10,971 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 16:19:10,972 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:19:10,973 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:19:10,973 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:19:11,015 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-24 16:19:11,141 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-24 16:19:11,143 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-24 16:19:11,385 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 16:19:11,393 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 16:19:11,394 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 16:19:11,394 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 16:19:11,501 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 16:19:11,502 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1460 ms +2021-01-24 16:19:12,104 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 16:19:12,169 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 16:19:14,967 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 16:19:14,967 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 16:19:14,967 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 16:19:15,116 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 16:19:15,130 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 16:19:15,138 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 16:19:15,147 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.681 seconds (JVM running for 6.756) +2021-01-24 16:19:36,710 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 16:19:36,710 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 16:19:36,711 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 16:19:36,738 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 16:19:36,855 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 16:22:05,225 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22392 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 16:22:05,228 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 16:22:05,261 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 16:22:05,261 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 16:22:05,726 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:22:05,727 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:22:05,736 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 16:22:05,739 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:22:05,739 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:22:05,743 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 16:22:05,751 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:22:05,752 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 16:22:05,761 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 16:22:05,912 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 16:22:05,956 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 16:22:05,957 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:22:05,957 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:22:05,989 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-24 16:22:06,086 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-24 16:22:06,088 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-24 16:22:06,331 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 16:22:06,337 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 16:22:06,337 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 16:22:06,338 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 16:22:06,414 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 16:22:06,414 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1152 ms +2021-01-24 16:22:06,844 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 16:22:06,894 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 16:22:08,603 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 16:22:08,604 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 16:22:08,604 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 16:22:08,756 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 16:22:08,770 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 16:22:08,778 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 16:22:08,787 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.906 seconds (JVM running for 5.037) +2021-01-24 16:22:13,563 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 16:22:13,564 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 16:22:13,565 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 16:22:13,584 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 16:22:13,702 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 16:25:22,421 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 23920 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 16:25:22,423 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 16:25:22,453 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 16:25:22,453 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 16:25:22,908 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:25:22,909 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:25:22,918 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 16:25:22,921 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:25:22,922 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:25:22,925 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 16:25:22,934 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:25:22,935 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 16:25:22,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 16:25:23,088 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 16:25:23,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 16:25:23,131 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:25:23,131 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:25:23,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:25:23,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 16:25:23,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:25:23,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:25:23,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:25:23,166 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-24 16:25:23,261 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-24 16:25:23,262 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-24 16:25:23,439 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 16:25:23,445 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 16:25:23,446 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 16:25:23,446 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 16:25:23,523 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 16:25:23,523 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1069 ms +2021-01-24 16:25:23,938 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 16:25:23,988 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 16:25:25,660 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 16:25:25,660 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 16:25:25,660 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 16:25:25,814 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 16:25:25,828 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 16:25:25,836 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 16:25:25,844 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.762 seconds (JVM running for 4.759) +2021-01-24 16:25:32,923 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 16:25:32,923 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 16:25:32,924 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-24 16:25:32,943 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 16:25:33,060 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-24 16:49:07,235 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 9652 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-24 16:49:07,238 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-24 16:49:07,269 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-24 16:49:07,270 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-24 16:49:07,742 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:49:07,743 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:49:07,753 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-24 16:49:07,756 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:49:07,756 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-24 16:49:07,760 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-24 16:49:07,768 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-24 16:49:07,769 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-24 16:49:07,778 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-24 16:49:07,928 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-24 16:49:07,966 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-24 16:49:07,968 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:49:07,968 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:49:07,968 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-24 16:49:08,003 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-24 16:49:08,103 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-24 16:49:08,105 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-24 16:49:08,296 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-24 16:49:08,302 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-24 16:49:08,303 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-24 16:49:08,303 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-24 16:49:08,379 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-24 16:49:08,379 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1108 ms +2021-01-24 16:49:08,791 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-24 16:49:08,844 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-24 16:49:10,547 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-24 16:49:10,548 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-24 16:49:10,548 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-24 16:49:10,718 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-24 16:49:10,731 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-24 16:49:10,740 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-24 16:49:10,748 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.836 seconds (JVM running for 4.563) +2021-01-24 16:49:43,004 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-24 16:49:43,004 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-24 16:49:43,005 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-24 16:49:43,025 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-24 16:49:43,142 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. diff --git a/log/community/log_error.log b/log/community/log_error.log index 3ea55784..4a9ae660 100644 --- a/log/community/log_error.log +++ b/log/community/log_error.log @@ -1,406 +1,630 @@ -2021-01-23 12:53:56,693 ERROR [restartedMain] o.s.b.SpringApplication [SpringApplication.java:856] Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'webMvcConfig': Unsatisfied dependency expressed through field 'loginTicketInterceptor'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'loginTicketInterceptor': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userService': Unsatisfied dependency expressed through field 'userMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:643) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1415) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:944) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:923) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:588) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:144) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:767) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:759) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:426) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:326) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1311) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1300) - 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.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'loginTicketInterceptor': Unsatisfied dependency expressed through field 'userService'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userService': Unsatisfied dependency expressed through field 'userMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:643) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1415) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - ... 25 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userService': Unsatisfied dependency expressed through field 'userMapper'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:643) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:119) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:399) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1415) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - ... 38 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'userMapper' defined in file [E:\GreateCommunity\target\classes\com\greate\community\dao\UserMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1401) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:608) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:640) - ... 51 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:658) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:638) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1336) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1179) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:571) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:276) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1380) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1300) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 62 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) - ... 75 common frames omitted -Caused by: org.springframework.core.NestedIOException: Failed to parse mapping resource: 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'; nested exception is org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.mybatis.spring.SqlSessionFactoryBean.buildSqlSessionFactory(SqlSessionFactoryBean.java:612) - at org.mybatis.spring.SqlSessionFactoryBean.afterPropertiesSet(SqlSessionFactoryBean.java:490) - at org.mybatis.spring.SqlSessionFactoryBean.getObject(SqlSessionFactoryBean.java:632) - at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration.sqlSessionFactory(MybatisAutoConfiguration.java:180) - at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$919d6021.CGLIB$sqlSessionFactory$1() - at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$919d6021$$FastClassBySpringCGLIB$$76fe3b8a.invoke() - at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:244) - at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:331) - at org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$$EnhancerBySpringCGLIB$$919d6021.sqlSessionFactory() - 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.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) - ... 76 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\GreateCommunity\target\classes\mapper\discusspost-mapper.xml]'. Cause: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:123) - at org.apache.ibatis.builder.xml.XMLMapperBuilder.parse(XMLMapperBuilder.java:95) - at org.mybatis.spring.SqlSessionFactoryBean.buildSqlSessionFactory(SqlSessionFactoryBean.java:610) - ... 89 common frames omitted -Caused by: java.lang.IllegalArgumentException: XML fragments parsed from previous mappers already contains value for com.greate.community.dao.DiscussPostMapper.selectFields - at org.apache.ibatis.session.Configuration$StrictMap.put(Configuration.java:992) - at org.apache.ibatis.session.Configuration$StrictMap.put(Configuration.java:948) - at org.apache.ibatis.builder.xml.XMLMapperBuilder.sqlElement(XMLMapperBuilder.java:351) - at org.apache.ibatis.builder.xml.XMLMapperBuilder.sqlElement(XMLMapperBuilder.java:342) - at org.apache.ibatis.builder.xml.XMLMapperBuilder.configurationElement(XMLMapperBuilder.java:120) - ... 91 common frames omitted -2021-01-23 12:56:39,124 ERROR [http-nio-8080-exec-9] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'entity_type' not found. Available parameters are [offset, entityType, index, entityId, param3, param4, param1, param2]] with root cause -org.apache.ibatis.binding.BindingException: Parameter 'entity_type' not found. Available parameters are [offset, entityType, index, entityId, param3, param4, param1, param2] - at org.apache.ibatis.binding.MapperMethod$ParamMap.get(MapperMethod.java:212) - at org.apache.ibatis.reflection.wrapper.MapWrapper.get(MapWrapper.java:45) - at org.apache.ibatis.reflection.MetaObject.getValue(MetaObject.java:122) - at org.apache.ibatis.executor.BaseExecutor.createCacheKey(BaseExecutor.java:219) - at org.apache.ibatis.executor.CachingExecutor.createCacheKey(CachingExecutor.java:146) - at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:88) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) - at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) - 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.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426) - at com.sun.proxy.$Proxy66.selectList(Unknown Source) - at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223) - at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:147) - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:80) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy74.selectCommentByEntity(Unknown Source) - at com.greate.community.service.CommentService.findCommentByEntity(CommentService.java:25) - at com.greate.community.controller.DiscussPostController.getDiscussPost(DiscussPostController.java:83) - 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -2021-01-23 15:00:15,540 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.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int).] with root cause -org.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int). - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:102) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy71.insertComment(Unknown Source) - at com.greate.community.service.CommentService.addComment(CommentService.java:67) - at com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) - at com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$d7b63501.addComment() - at com.greate.community.controller.CommentController.addComment(CommentController.java:37) - 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -2021-01-23 15:08:15,661 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.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int).] with root cause -org.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int). - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:102) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy71.insertComment(Unknown Source) - at com.greate.community.service.CommentService.addComment(CommentService.java:67) - at com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) - at com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$bb803a75.addComment() - at com.greate.community.controller.CommentController.addComment(CommentController.java:38) - 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) -2021-01-23 15:09:47,168 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.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int).] with root cause -org.apache.ibatis.binding.BindingException: Mapper method 'com.greate.community.dao.CommentMapper.insertComment attempted to return null from a method with a primitive return type (int). - at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:102) - at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:152) - at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:85) - at com.sun.proxy.$Proxy71.insertComment(Unknown Source) - at com.greate.community.service.CommentService.addComment(CommentService.java:67) - at com.greate.community.service.CommentService$$FastClassBySpringCGLIB$$a7149fbd.invoke() - at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:388) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) - at com.greate.community.service.CommentService$$EnhancerBySpringCGLIB$$bb803a75.addComment() - at com.greate.community.controller.CommentController.addComment(CommentController.java:38) - 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.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:652) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) - at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) - at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) - at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) - at java.lang.Thread.run(Thread.java:748) +2021-01-25 11:06:05,169 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "abc" +2021-01-25 11:06:05,174 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) +2021-01-25 11:06:05,174 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.valueOf(Integer.java:766) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterList(MessageController.java:37) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 11:13:09,251 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "asd" +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:615) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterTarget(MessageController.java:120) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterDetail(MessageController.java:101) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 11:13:09,259 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 11:13:09,259 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "asd" +2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) +2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:615) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterTarget(MessageController.java:120) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterDetail(MessageController.java:101) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:16:15,011 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:16:18,420 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:16:20,875 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:16:20,883 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:16:20,883 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "profile.html" +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 17:21:56,209 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id" +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 17:22:05,014 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id" +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) diff --git a/log/community/log_info.log b/log/community/log_info.log index 1fe6587f..692b0740 100644 --- a/log/community/log_info.log +++ b/log/community/log_info.log @@ -1,656 +1,4264 @@ -2021-01-24 11:45:56,724 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24168 (started by 19124 in E:\GreateCommunity) -2021-01-24 11:45:56,735 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 11:45:57,821 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:45:57,826 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 11:45:57,855 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 20 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 11:45:57,864 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:45:57,866 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 11:45:57,877 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 11:45:57,902 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:45:57,904 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 11:45:57,925 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. -2021-01-24 11:45:58,374 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 11:45:58,465 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 11:45:58,467 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:45:58,467 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:45:58,467 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:45:58,468 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 11:45:58,468 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 11:45:58,469 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:45:58,538 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-24 11:45:58,994 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-24 11:45:58,999 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-24 11:46:00,116 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 11:46:00,297 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 11:46:04,400 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 11:46:04,400 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 11:46:04,401 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 11:46:04,669 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 8.584 seconds (JVM running for 10.481) -2021-01-24 11:46:05,089 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-24 11:47:13,814 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 3164 (started by 19124 in E:\GreateCommunity) -2021-01-24 11:47:13,816 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 11:47:14,326 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:47:14,329 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 11:47:14,344 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 11:47:14,348 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:47:14,349 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 11:47:14,354 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 11:47:14,367 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:47:14,368 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 11:47:14,379 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 11:47:14,611 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 11:47:14,670 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 11:47:14,671 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:47:14,671 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:47:14,671 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:47:14,672 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 11:47:14,672 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 11:47:14,672 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:47:14,716 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-24 11:47:14,962 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-24 11:47:14,965 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-24 11:47:15,710 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 11:47:15,809 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 11:47:18,167 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 11:47:18,167 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 11:47:18,167 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 11:47:18,418 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 4.923 seconds (JVM running for 5.791) -2021-01-24 11:47:18,684 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 11:47:18,939 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 11:47:19,082 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-24 11:47:19,085 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... -2021-01-24 11:47:19,092 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. -2021-01-24 11:48:59,409 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 6272 (started by 19124 in E:\GreateCommunity) -2021-01-24 11:48:59,412 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 11:48:59,981 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:48:59,984 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 11:48:59,997 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 11:49:00,002 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:49:00,003 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 11:49:00,009 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 11:49:00,021 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 11:49:00,023 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 11:49:00,035 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-24 11:49:00,264 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 11:49:00,324 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 11:49:00,326 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:49:00,326 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:49:00,326 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:49:00,327 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 11:49:00,327 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 11:49:00,327 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 11:49:00,373 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-24 11:49:00,615 INFO [main] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-24 11:49:00,618 INFO [main] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-24 11:49:01,318 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 11:49:01,422 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 11:49:04,067 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 11:49:04,068 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 11:49:04,068 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 11:49:04,333 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 5.256 seconds (JVM running for 6.166) -2021-01-24 11:49:04,652 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 11:49:04,949 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 11:49:05,063 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-24 11:49:05,066 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... -2021-01-24 11:49:05,071 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. -2021-01-24 12:03:08,772 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24392 (started by 19124 in E:\GreateCommunity) -2021-01-24 12:03:08,776 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 12:03:09,332 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:03:09,335 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 12:03:09,352 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 12:03:09,357 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:03:09,358 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 12:03:09,365 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 12:03:09,381 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:03:09,384 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 12:03:09,400 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. -2021-01-24 12:03:09,733 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 12:03:09,816 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 12:03:09,818 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:03:09,818 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:03:09,818 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:03:09,819 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 12:03:09,819 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 12:03:09,820 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:03:09,887 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-24 12:03:10,234 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-24 12:03:10,238 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-24 12:03:11,280 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 12:03:11,468 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 12:03:15,628 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 12:03:15,628 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 12:03:15,629 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 12:03:15,948 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 7.522 seconds (JVM running for 8.458) -2021-01-24 12:03:16,464 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 12:03:16,822 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 12:03:16,977 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-24 12:03:16,979 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... -2021-01-24 12:03:16,985 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. -2021-01-24 12:37:53,908 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:55] Starting MapperTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22336 (started by 19124 in E:\GreateCommunity) -2021-01-24 12:37:53,910 INFO [main] c.g.c.MapperTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 12:37:54,623 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:37:54,626 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 12:37:54,644 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 13 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 12:37:54,650 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:37:54,652 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 12:37:54,658 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 12:37:54,675 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:37:54,677 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 12:37:54,690 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-24 12:37:54,996 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 12:37:55,052 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 12:37:55,053 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:37:55,054 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:37:55,054 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:37:55,054 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 12:37:55,055 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 12:37:55,055 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:37:55,111 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-24 12:37:55,415 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-24 12:37:55,418 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-24 12:37:55,603 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13732 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 12:37:55,606 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 12:37:55,649 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 12:37:55,650 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 12:37:56,244 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:37:56,246 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 12:37:56,263 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 12 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 12:37:56,268 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:37:56,269 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 12:37:56,276 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 12:37:56,293 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 12:37:56,294 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 12:37:56,308 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-24 12:37:56,352 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 12:37:56,533 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 12:37:56,595 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 12:37:56,674 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 12:37:56,676 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 12:37:56,677 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 12:37:56,678 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:37:56,679 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 12:37:56,680 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 12:37:56,681 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:37:56,682 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 12:37:56,754 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-24 12:37:56,991 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-24 12:37:56,994 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-24 12:37:57,426 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 12:37:57,440 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 12:37:57,441 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 12:37:57,441 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 12:37:57,609 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 12:37:57,609 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1958 ms -2021-01-24 12:37:58,413 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 12:37:58,496 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 12:37:59,997 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 12:37:59,998 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 12:37:59,998 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 12:38:00,271 INFO [main] c.g.c.MapperTests [StartupInfoLogger.java:61] Started MapperTests in 6.694 seconds (JVM running for 7.583) -2021-01-24 12:38:00,463 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 12:38:00,464 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 12:38:00,464 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 12:38:00,641 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 12:38:00,761 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 12:38:00,784 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 12:38:00,799 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 12:38:00,813 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.613 seconds (JVM running for 6.607) -2021-01-24 12:38:01,012 INFO [main] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 12:38:01,210 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' -2021-01-24 12:38:01,213 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:350] HikariPool-1 - Shutdown initiated... -2021-01-24 12:38:01,221 INFO [SpringContextShutdownHook] c.z.h.HikariDataSource [HikariDataSource.java:352] HikariPool-1 - Shutdown completed. -2021-01-24 12:38:18,418 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 12:38:18,418 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 12:38:18,419 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 12:38:26,590 INFO [http-nio-8080-exec-10] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 12:38:26,815 INFO [http-nio-8080-exec-10] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 13:01:14,510 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 16520 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 13:01:14,514 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 13:01:14,564 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 13:01:14,565 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 13:01:15,421 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 13:01:15,423 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 13:01:15,436 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 13:01:15,440 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 13:01:15,441 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 13:01:15,446 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 13:01:15,457 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 13:01:15,458 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 13:01:15,471 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-24 13:01:15,679 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 13:01:15,736 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 13:01:15,737 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 13:01:15,738 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 13:01:15,738 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 13:01:15,739 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 13:01:15,782 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-24 13:01:15,918 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-24 13:01:15,920 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-24 13:01:16,165 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 13:01:16,172 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 13:01:16,173 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 13:01:16,173 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 13:01:16,262 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 13:01:16,262 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1696 ms -2021-01-24 13:01:16,763 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 13:01:16,819 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 13:01:18,594 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 13:01:18,594 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 13:01:18,594 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 13:01:18,809 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 13:01:18,823 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 13:01:18,832 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 13:01:18,840 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.874 seconds (JVM running for 6.142) -2021-01-24 13:01:23,026 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 13:01:23,027 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 13:01:23,028 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 13:01:23,048 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 13:01:23,166 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 15:25:20,631 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 16280 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 15:25:20,633 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 15:25:20,665 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 15:25:20,666 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 15:25:21,174 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:25:21,176 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:25:21,185 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 15:25:21,188 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:25:21,188 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:25:21,192 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 15:25:21,201 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:25:21,202 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 15:25:21,212 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 15:25:21,369 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 15:25:21,413 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 15:25:21,415 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:25:21,416 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:25:21,416 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:25:21,416 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 15:25:21,417 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:25:21,417 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:25:21,417 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:25:21,447 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-24 15:25:21,544 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-24 15:25:21,546 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-24 15:25:21,728 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 15:25:21,734 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 15:25:21,734 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 15:25:21,735 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 15:25:21,813 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 15:25:21,814 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1147 ms -2021-01-24 15:25:22,278 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 15:25:22,331 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 15:25:24,147 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 15:25:24,148 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 15:25:24,148 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 15:25:24,302 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 15:25:24,317 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 15:25:24,326 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 15:25:24,335 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.075 seconds (JVM running for 4.935) -2021-01-24 15:25:49,077 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 15:25:49,078 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 15:25:49,079 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 15:25:49,103 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 15:25:49,236 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 15:34:12,825 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 6552 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 15:34:12,828 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 15:34:12,860 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 15:34:12,860 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 15:34:13,345 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:34:13,347 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:34:13,357 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 15:34:13,360 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:34:13,360 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:34:13,364 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 15:34:13,373 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:34:13,374 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 15:34:13,384 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 15:34:13,543 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 15:34:13,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 15:34:13,588 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:34:13,588 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:34:13,589 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:34:13,624 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-24 15:34:13,724 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-24 15:34:13,726 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-24 15:34:13,923 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 15:34:13,929 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 15:34:13,930 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 15:34:13,930 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 15:34:14,009 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 15:34:14,010 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1149 ms -2021-01-24 15:34:14,443 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 15:34:14,494 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 15:34:16,205 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 15:34:16,206 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 15:34:16,206 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 15:34:16,380 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 15:34:16,395 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 15:34:16,403 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 15:34:16,412 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.933 seconds (JVM running for 4.724) -2021-01-24 15:34:23,687 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 15:34:23,687 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 15:34:23,688 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 15:34:23,709 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 15:34:23,832 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 15:42:39,257 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13188 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 15:42:39,260 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 15:42:39,294 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 15:42:39,294 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 15:42:39,765 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:42:39,767 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:42:39,776 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 15:42:39,779 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:42:39,780 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:42:39,783 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 15:42:39,792 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:42:39,793 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 15:42:39,803 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 15:42:39,954 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 15:42:39,993 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 15:42:39,994 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:42:39,994 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:42:39,995 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:42:40,027 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-24 15:42:40,123 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-24 15:42:40,125 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-24 15:42:40,315 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 15:42:40,320 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 15:42:40,321 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 15:42:40,321 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 15:42:40,396 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 15:42:40,397 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1102 ms -2021-01-24 15:42:40,810 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 15:42:40,861 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 15:42:42,554 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 15:42:42,554 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 15:42:42,554 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 15:42:42,748 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 15:42:42,762 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 15:42:42,770 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 15:42:42,779 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.863 seconds (JVM running for 4.609) -2021-01-24 15:42:45,753 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 15:42:45,754 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 15:42:45,755 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 15:42:45,774 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 15:42:45,892 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 15:45:05,824 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25820 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 15:45:05,827 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 15:45:05,862 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 15:45:05,862 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 15:45:06,327 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:45:06,329 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:45:06,338 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 15:45:06,341 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:45:06,341 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:45:06,345 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 15:45:06,353 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:45:06,354 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 15:45:06,363 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 2 ms. Found 0 Redis repository interfaces. -2021-01-24 15:45:06,514 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 15:45:06,552 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 15:45:06,553 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:45:06,553 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:45:06,553 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:45:06,554 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:45:06,585 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-24 15:45:06,681 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-24 15:45:06,683 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-24 15:45:06,874 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 15:45:06,880 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 15:45:06,880 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 15:45:06,881 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 15:45:06,954 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 15:45:06,954 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1091 ms -2021-01-24 15:45:07,377 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 15:45:07,424 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 15:45:09,091 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 15:45:09,092 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 15:45:09,092 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 15:45:09,256 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 15:45:09,269 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 15:45:09,277 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 15:45:09,285 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.785 seconds (JVM running for 4.654) -2021-01-24 15:45:13,702 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 15:45:13,702 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 15:45:13,703 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 15:45:13,723 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 15:45:13,839 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 15:45:56,253 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 14856 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 15:45:56,256 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 15:45:56,291 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 15:45:56,292 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 15:45:56,788 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:45:56,790 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:45:56,799 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 15:45:56,802 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:45:56,803 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 15:45:56,806 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 15:45:56,815 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 15:45:56,815 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 15:45:56,824 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 2 ms. Found 0 Redis repository interfaces. -2021-01-24 15:45:56,976 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 15:45:57,014 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 15:45:57,015 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:45:57,015 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:45:57,015 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:45:57,016 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 15:45:57,048 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-24 15:45:57,146 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-24 15:45:57,149 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-24 15:45:57,344 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 15:45:57,350 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 15:45:57,350 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 15:45:57,351 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 15:45:57,424 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 15:45:57,425 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1132 ms -2021-01-24 15:45:57,836 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 15:45:57,886 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 15:45:59,551 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 15:45:59,551 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 15:45:59,551 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 15:45:59,723 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 15:45:59,737 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 15:45:59,745 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 15:45:59,754 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.826 seconds (JVM running for 4.655) -2021-01-24 15:46:33,060 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 15:46:33,060 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 15:46:33,061 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms -2021-01-24 15:46:33,079 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 15:46:33,197 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 16:19:09,987 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 3480 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 16:19:09,991 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 16:19:10,039 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 16:19:10,040 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 16:19:10,676 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:19:10,678 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:19:10,689 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 16:19:10,693 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:19:10,694 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:19:10,698 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 16:19:10,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:19:10,709 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 16:19:10,721 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 16:19:10,915 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 16:19:10,971 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 16:19:10,972 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:19:10,973 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:19:10,973 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:19:10,974 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:19:11,015 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-24 16:19:11,141 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-24 16:19:11,143 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-24 16:19:11,385 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 16:19:11,393 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 16:19:11,394 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 16:19:11,394 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 16:19:11,501 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 16:19:11,502 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1460 ms -2021-01-24 16:19:12,104 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 16:19:12,169 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 16:19:14,967 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 16:19:14,967 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 16:19:14,967 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 16:19:15,116 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 16:19:15,130 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 16:19:15,138 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 16:19:15,147 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.681 seconds (JVM running for 6.756) -2021-01-24 16:19:36,710 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 16:19:36,710 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 16:19:36,711 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 16:19:36,738 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 16:19:36,855 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 16:22:05,225 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22392 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 16:22:05,228 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 16:22:05,261 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 16:22:05,261 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 16:22:05,726 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:22:05,727 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:22:05,736 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 16:22:05,739 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:22:05,739 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:22:05,743 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 16:22:05,751 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:22:05,752 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 16:22:05,761 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 16:22:05,912 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 16:22:05,956 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 16:22:05,957 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:22:05,957 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:22:05,958 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:22:05,989 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-24 16:22:06,086 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-24 16:22:06,088 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-24 16:22:06,331 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 16:22:06,337 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 16:22:06,337 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 16:22:06,338 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 16:22:06,414 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 16:22:06,414 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1152 ms -2021-01-24 16:22:06,844 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 16:22:06,894 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 16:22:08,603 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 16:22:08,604 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 16:22:08,604 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 16:22:08,756 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 16:22:08,770 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 16:22:08,778 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 16:22:08,787 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.906 seconds (JVM running for 5.037) -2021-01-24 16:22:13,563 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 16:22:13,564 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 16:22:13,565 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 16:22:13,584 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 16:22:13,702 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 16:25:22,421 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 23920 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 16:25:22,423 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 16:25:22,453 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 16:25:22,453 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 16:25:22,908 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:25:22,909 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:25:22,918 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 16:25:22,921 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:25:22,922 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:25:22,925 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 16:25:22,934 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:25:22,935 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 16:25:22,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 16:25:23,088 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 16:25:23,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 16:25:23,131 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:25:23,131 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:25:23,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:25:23,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 16:25:23,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:25:23,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:25:23,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:25:23,166 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-24 16:25:23,261 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-24 16:25:23,262 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-24 16:25:23,439 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 16:25:23,445 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 16:25:23,446 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 16:25:23,446 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 16:25:23,523 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 16:25:23,523 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1069 ms -2021-01-24 16:25:23,938 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 16:25:23,988 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 16:25:25,660 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 16:25:25,660 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 16:25:25,660 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 16:25:25,814 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 16:25:25,828 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 16:25:25,836 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 16:25:25,844 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.762 seconds (JVM running for 4.759) -2021-01-24 16:25:32,923 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 16:25:32,923 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 16:25:32,924 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-24 16:25:32,943 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 16:25:33,060 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-24 16:49:07,235 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 9652 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-24 16:49:07,238 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-24 16:49:07,269 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-24 16:49:07,270 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-24 16:49:07,742 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:49:07,743 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:49:07,753 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-24 16:49:07,756 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:49:07,756 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-24 16:49:07,760 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-24 16:49:07,768 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-24 16:49:07,769 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-24 16:49:07,778 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-24 16:49:07,928 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-24 16:49:07,966 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-24 16:49:07,968 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:49:07,968 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:49:07,968 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:49:07,969 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-24 16:49:08,003 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-24 16:49:08,103 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-24 16:49:08,105 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-24 16:49:08,296 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-24 16:49:08,302 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-24 16:49:08,303 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-24 16:49:08,303 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-24 16:49:08,379 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-24 16:49:08,379 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1108 ms -2021-01-24 16:49:08,791 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-24 16:49:08,844 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-24 16:49:10,547 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-24 16:49:10,548 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-24 16:49:10,548 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-24 16:49:10,718 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-24 16:49:10,731 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-24 16:49:10,740 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-24 16:49:10,748 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.836 seconds (JVM running for 4.563) -2021-01-24 16:49:43,004 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-24 16:49:43,004 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-24 16:49:43,005 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms -2021-01-24 16:49:43,025 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-24 16:49:43,142 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:05:35,022 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22600 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:05:35,027 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:05:35,067 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:05:35,067 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:05:35,670 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:05:35,672 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:05:35,683 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:05:35,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:05:35,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:05:35,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:05:35,700 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:05:35,701 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:05:35,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:05:35,885 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:05:35,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:05:35,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:05:35,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:05:35,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:05:35,967 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:05:36,090 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:05:36,093 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:05:36,329 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:05:36,419 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:05:36,420 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1352 ms +2021-01-25 11:05:36,884 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:05:36,946 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:05:39,099 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:05:39,116 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:05:39,128 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:05:39,138 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.515 seconds (JVM running for 5.444) +2021-01-25 11:05:44,930 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:05:44,931 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:05:44,933 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-25 11:05:55,003 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:05:55,269 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:06:48,805 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26704 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:06:48,808 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:06:48,851 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:06:48,852 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:06:49,526 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:06:49,526 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:06:49,541 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:06:49,543 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:06:49,543 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:06:49,551 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:06:49,561 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:06:49,561 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:06:49,576 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 11:06:49,771 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:06:49,863 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:06:49,987 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:06:49,990 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:06:50,243 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:06:50,351 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:06:50,351 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1498 ms +2021-01-25 11:06:50,899 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:06:50,960 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:06:53,891 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:06:53,906 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:06:53,915 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:06:53,924 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.478 seconds (JVM running for 6.287) +2021-01-25 11:08:25,915 INFO [http-nio-8080-exec-3] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:08:25,915 INFO [http-nio-8080-exec-3] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:08:25,916 INFO [http-nio-8080-exec-3] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:08:26,742 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:08:26,861 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:12:58,030 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7680 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:12:58,035 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:12:58,065 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:12:58,065 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:12:58,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:12:58,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:12:58,530 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:12:58,550 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:12:58,550 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:12:58,560 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:12:58,710 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:12:58,780 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:12:58,880 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:12:58,881 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:12:59,070 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:12:59,150 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:12:59,150 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1080 ms +2021-01-25 11:12:59,580 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:12:59,640 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:13:01,545 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:13:01,560 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:13:01,570 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:13:01,581 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.892 seconds (JVM running for 4.809) +2021-01-25 11:13:09,055 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:13:09,055 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:13:09,056 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 11:13:09,077 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:13:09,195 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:17:06,659 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 12892 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:17:06,659 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:17:06,694 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:17:06,694 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:17:07,169 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:17:07,169 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:17:07,189 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:17:07,199 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:17:07,199 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:17:07,209 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:17:07,359 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:17:07,429 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:17:07,519 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:17:07,519 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:17:07,714 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:17:07,789 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:17:07,789 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1095 ms +2021-01-25 11:17:08,211 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:17:08,259 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:17:10,149 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:17:10,169 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:17:10,180 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:17:10,180 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.864 seconds (JVM running for 4.748) +2021-01-25 11:17:13,607 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:17:13,607 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:17:13,608 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:17:13,627 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:17:13,742 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:18:34,589 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7512 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:18:34,589 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:18:34,619 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:18:34,619 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:18:35,089 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:18:35,089 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:18:35,099 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:18:35,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:18:35,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:18:35,119 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:18:35,273 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:18:35,344 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:18:35,444 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:18:35,444 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:18:35,634 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:18:35,719 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:18:35,719 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1100 ms +2021-01-25 11:18:36,159 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:18:36,209 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:18:38,139 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:18:38,149 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:18:38,159 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:18:38,169 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.899 seconds (JVM running for 4.762) +2021-01-25 11:18:44,095 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:18:44,096 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:18:44,097 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:18:45,817 INFO [http-nio-8080-exec-5] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:18:45,933 INFO [http-nio-8080-exec-5] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:19:54,333 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7840 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:19:54,333 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:19:54,369 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:19:54,369 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:19:54,849 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:19:54,850 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:19:54,860 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:19:54,863 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:19:54,864 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:19:54,867 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:19:54,876 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:19:54,877 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:19:54,886 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:19:55,042 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:19:55,082 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:19:55,109 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:19:55,208 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:19:55,213 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:19:55,429 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:19:55,513 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:19:55,513 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1144 ms +2021-01-25 11:19:55,924 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:19:55,976 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:19:57,891 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:19:57,906 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:19:57,914 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:19:57,919 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.933 seconds (JVM running for 4.815) +2021-01-25 11:20:00,181 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:20:00,181 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:20:00,182 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:20:00,205 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:20:00,325 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:22:03,497 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 19880 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:22:03,500 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:22:03,542 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:22:03,543 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:22:04,032 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:22:04,034 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:22:04,045 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:22:04,049 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:22:04,050 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:22:04,054 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:22:04,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:22:04,064 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:22:04,076 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:22:04,240 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:22:04,287 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:22:04,321 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:22:04,421 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:22:04,422 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:22:04,603 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:22:04,610 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:22:04,610 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:22:04,611 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:22:04,688 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:22:04,688 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1144 ms +2021-01-25 11:22:05,111 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:22:05,164 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:22:07,053 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:22:07,067 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:22:07,075 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:22:07,084 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.964 seconds (JVM running for 4.843) +2021-01-25 11:22:07,291 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:22:07,291 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:22:07,292 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 11:22:07,316 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:22:07,439 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 12:15:19,158 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 9892 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 12:15:19,160 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 12:15:19,193 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 12:15:19,194 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 12:15:19,685 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 12:15:19,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 12:15:19,696 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 12:15:19,699 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 12:15:19,700 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 12:15:19,703 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 12:15:19,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 12:15:19,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 12:15:19,722 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 12:15:19,874 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 12:15:19,914 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 12:15:19,947 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 12:15:20,129 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 12:15:20,131 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 12:15:20,354 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 12:15:20,360 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 12:15:20,360 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 12:15:20,361 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 12:15:20,467 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 12:15:20,468 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1273 ms +2021-01-25 12:15:20,933 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 12:15:20,997 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 12:15:23,067 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 12:15:23,082 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 12:15:23,090 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 12:15:23,099 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.337 seconds (JVM running for 5.242) +2021-01-25 12:15:32,637 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 12:15:32,638 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 12:15:32,640 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-25 12:15:32,655 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 12:15:32,669 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 12:15:32,790 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 12:15:32,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 12:15:32,851 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 12:15:32,857 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,861 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,870 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:33,476 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 12:15:33,482 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:33,483 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 12:15:33,489 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:43,533 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26424 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:15:43,538 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:15:43,568 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:15:43,568 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:15:44,043 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:15:44,043 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:15:44,064 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:15:44,074 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:15:44,074 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:15:44,086 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:15:44,242 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:15:44,273 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:15:44,318 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:15:44,474 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:15:44,483 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:15:44,708 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:15:44,859 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:15:44,859 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1286 ms +2021-01-25 15:15:45,541 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:15:45,608 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:15:47,236 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:15:47,237 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:15:47,237 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:15:47,485 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:15:47,501 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:15:47,510 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:15:47,519 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.317 seconds (JVM running for 5.156) +2021-01-25 15:15:51,093 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:15:51,093 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:15:51,094 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:15:51,105 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:51,118 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:15:51,246 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:15:51,275 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,289 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:15:51,306 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:15:51,312 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,330 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,936 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:51,940 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:51,944 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,946 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,955 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:53,958 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,964 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:15:53,966 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,968 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,981 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,984 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,985 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,987 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:53,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,995 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:53,996 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,997 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,998 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:53,999 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:54,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:54,002 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:54,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:54,005 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:54,006 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:54,126 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:54,129 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:57,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:57,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:57,005 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:16:08,467 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:08,469 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:08,482 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:08,484 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:15,002 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:15,004 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:15,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:16:18,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:18,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:18,407 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:16:20,867 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:20,869 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:20,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:32,821 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13960 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:17:32,824 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:17:32,855 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:17:32,855 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:17:33,343 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:17:33,346 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:17:33,355 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:17:33,358 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:17:33,358 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:17:33,362 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:17:33,371 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:17:33,372 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:17:33,382 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:17:33,536 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:17:33,576 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:17:33,577 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:17:33,578 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:17:33,578 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:17:33,580 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:17:33,612 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:17:33,776 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:17:33,777 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:17:34,009 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:17:34,144 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:17:34,145 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1289 ms +2021-01-25 15:17:34,759 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:17:34,824 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:17:36,673 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:17:36,688 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:17:36,697 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:17:36,706 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.23 seconds (JVM running for 5.052) +2021-01-25 15:17:41,257 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:17:41,258 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:17:41,259 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:17:41,270 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:41,285 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:17:41,402 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:17:41,428 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:17:41,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,467 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,476 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,478 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,481 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,484 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,486 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,489 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,496 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,500 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,502 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,082 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:42,085 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,925 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:42,927 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,928 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:17:42,930 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,931 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,933 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,936 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,941 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,943 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,945 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,946 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,947 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,948 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,949 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,951 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,952 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,953 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,954 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,956 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,957 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,958 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,960 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,961 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,962 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,963 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:43,065 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:43,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:44,292 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:44,294 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:44,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:44,878 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:44,880 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:47,977 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:47,979 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:47,980 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:47,983 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:47,984 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:49,164 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:49,167 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:49,169 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:49,172 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:49,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:50,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:50,454 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:50,455 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:50,457 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:50,458 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:51,852 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:51,854 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:51,856 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:51,857 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:51,859 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:52,968 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:52,970 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:52,971 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:52,973 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:52,974 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:56,127 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:56,129 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:56,130 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:56,132 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:56,133 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:57,654 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:57,656 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:57,658 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:57,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:57,661 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:58,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:58,639 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:58,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:58,642 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:58,643 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:59,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:59,386 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:59,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:59,389 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:59,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:18:00,656 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:18:00,657 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:18:00,659 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:18:00,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:18:00,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:18:04,184 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:18:04,187 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:18:04,188 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:18:04,190 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:18:04,190 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:21:47,700 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 15000 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:21:47,700 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:21:47,734 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:21:47,734 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:21:48,205 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:21:48,205 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:21:48,214 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:21:48,234 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:21:48,234 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:21:48,244 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:21:48,394 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:21:48,424 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:21:48,436 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:21:48,465 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:21:48,624 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:21:48,624 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:21:48,849 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:21:48,959 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:21:48,959 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1225 ms +2021-01-25 15:21:49,586 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:21:49,654 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:21:51,524 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:21:51,534 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:21:51,544 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:21:51,558 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.229 seconds (JVM running for 5.078) +2021-01-25 15:21:56,517 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:21:56,517 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:21:56,518 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:21:56,529 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:21:56,543 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:21:56,661 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:21:56,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:56,703 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:21:56,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:21:56,724 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:56,727 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,448 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,450 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,451 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,453 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,457 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,460 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,463 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,467 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,927 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:21:57,933 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,936 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:21:57,939 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:01,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:22:01,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,947 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,957 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,963 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,965 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,966 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,969 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,970 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,973 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,975 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,977 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,978 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,979 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,983 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,985 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:02,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:02,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:03,349 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:03,353 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:03,356 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:22:03,366 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:03,366 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:22:06,447 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:06,449 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:22:06,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:22:06,456 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,457 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,459 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,461 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,461 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,463 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,464 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,469 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,470 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,473 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,474 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,475 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,476 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,478 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,478 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,479 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,578 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:06,580 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:06,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:08,835 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,836 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:22:08,838 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,841 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,842 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,844 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,846 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,847 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,848 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,849 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,851 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,852 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,853 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,854 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,856 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,857 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,859 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,860 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,861 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,862 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,863 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,864 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,865 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,866 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:09,037 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:09,041 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:10,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:10,834 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:10,836 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:22:10,839 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:10,840 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:22:11,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:11,691 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:11,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:22:11,694 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:11,695 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:22:13,922 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:13,924 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,926 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:22:13,928 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:22:13,930 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,931 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,932 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,933 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,934 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,935 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,936 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,937 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,938 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,940 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,941 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,942 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,943 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,944 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,945 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,946 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,947 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,948 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,948 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,949 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:14,083 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:14,086 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:14,090 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:14,093 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,360 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:16,362 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,363 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:22:16,364 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,365 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,367 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,368 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,370 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,371 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,372 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,374 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,376 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,377 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,378 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,379 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,380 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,381 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,382 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,383 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,384 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,385 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,386 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,387 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,388 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,390 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,561 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:16,564 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:37:56,153 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24048 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:37:56,156 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:37:56,191 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:37:56,191 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:37:56,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:37:56,710 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:37:56,721 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:37:56,723 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:37:56,724 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:37:56,728 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:37:56,737 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:37:56,738 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:37:56,748 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:37:56,900 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:37:56,939 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:37:56,940 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:37:56,970 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:37:57,130 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:37:57,130 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:37:57,393 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:37:57,399 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:37:57,400 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:37:57,400 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:37:57,511 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:37:57,511 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1319 ms +2021-01-25 15:37:58,175 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:37:58,240 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:38:00,135 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:38:00,164 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:38:00,179 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:38:00,190 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.381 seconds (JVM running for 5.23) +2021-01-25 15:38:00,871 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:38:00,871 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:38:00,872 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:38:00,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:00,900 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:38:01,030 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:38:01,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:01,095 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:01,104 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,107 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,934 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,937 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,940 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,941 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,942 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,945 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,947 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,948 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,951 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,952 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:02,411 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:02,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:02,419 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:02,423 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:04,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,338 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:04,340 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,341 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,343 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,352 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,357 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,360 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,361 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,362 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,363 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,365 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,367 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,368 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,371 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,371 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,372 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,373 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,374 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,379 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,380 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,381 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,385 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,386 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,388 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,389 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,390 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,391 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,392 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,393 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,394 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,395 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,397 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,397 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,398 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,400 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,525 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:04,528 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:12,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:12,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,580 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:12,582 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:12,583 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:12,694 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:12,697 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,697 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:12,700 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:13,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:13,882 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:13,885 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:38:13,887 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:13,888 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:16,738 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:16,740 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,741 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:16,743 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:16,748 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,750 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,751 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,752 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,753 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,754 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,755 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,757 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,758 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,759 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,760 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,761 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,762 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,764 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,765 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,766 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,767 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,768 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,769 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,770 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,874 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:16,876 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,887 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:16,890 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:19,208 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:19,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:19,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:19,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:19,315 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:19,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:19,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,926 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:21,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,930 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:21,931 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,932 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,933 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,934 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,935 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,936 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,941 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,943 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,944 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,945 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,946 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,946 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,947 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,948 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,949 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,950 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,950 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,951 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,952 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,955 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,956 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,957 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,958 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,959 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,960 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,961 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,963 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,964 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,965 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,968 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,969 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:22,113 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:22,115 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:25,463 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:25,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:25,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:38:25,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:25,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:32,498 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:32,499 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:32,503 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.logout]. +2021-01-25 15:38:32,529 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:32,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,564 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,570 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.login]. +2021-01-25 15:38:41,596 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,598 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,599 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:41,600 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:41,602 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,604 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,605 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,607 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,609 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,610 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,611 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,611 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,612 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,614 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,615 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,619 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,621 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,729 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,737 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,739 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,288 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:43,290 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,292 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:43,293 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,294 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,295 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,295 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,298 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,299 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,300 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,300 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,302 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,304 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,305 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,307 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,309 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,310 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,311 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,312 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,313 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,314 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,314 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,315 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,316 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,318 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,319 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,320 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,321 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,322 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,323 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,324 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,325 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,326 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,326 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,328 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,329 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,330 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,330 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,331 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,332 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,439 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:43,441 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:46,864 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:46,866 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:46,867 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.logout]. +2021-01-25 15:38:46,889 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:46,989 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:48,050 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:48,052 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:48,053 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:48,055 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,056 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,057 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,058 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,060 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,061 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,062 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,063 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,066 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,068 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,069 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,071 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,187 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:48,196 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:50,018 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:50,019 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:50,020 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,022 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,022 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,024 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,026 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,026 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,028 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,029 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,029 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,031 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,032 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,036 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,040 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,041 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,042 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,043 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,044 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,047 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,048 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,049 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,050 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,051 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,188 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:53,666 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:53,758 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,001 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,004 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.login]. +2021-01-25 15:38:59,024 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,026 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,027 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:59,028 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:59,030 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,031 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,032 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,033 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,033 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,034 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,034 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,035 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,036 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,037 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,037 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,038 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,039 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,040 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,040 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,041 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,042 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,044 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,044 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,045 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,139 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,141 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,150 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,153 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:02,165 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26420 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:43:02,170 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:43:02,223 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:43:02,224 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:43:02,868 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:43:02,870 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:43:02,882 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:43:02,885 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:43:02,886 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:43:02,890 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:43:02,901 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:43:02,902 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:43:02,913 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 15:43:03,082 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:43:03,131 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:43:03,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:43:03,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:43:03,134 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:43:03,167 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:43:03,370 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:43:03,372 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:43:03,625 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:43:03,633 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:43:03,633 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:43:03,634 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:43:03,759 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:43:03,759 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1534 ms +2021-01-25 15:43:04,454 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:43:04,520 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:43:06,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:43:06,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:43:06,272 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:43:06,510 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:43:06,524 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:43:06,533 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:43:06,542 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.886 seconds (JVM running for 6.152) +2021-01-25 15:43:09,182 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:43:09,182 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:43:09,183 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:43:09,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:09,206 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:43:09,323 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:43:09,348 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:09,362 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:43:09,377 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:43:09,384 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:09,386 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,060 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,061 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,063 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,064 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,066 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,067 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,069 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,070 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,079 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,080 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,083 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,525 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:10,529 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,534 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:10,536 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,658 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:20,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,663 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:43:20,664 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:43:20,668 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,671 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,672 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,675 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,677 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,678 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,679 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,681 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,681 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,683 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,684 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,685 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,686 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,688 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,689 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,691 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,691 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,692 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,693 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,695 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,801 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:20,806 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:20,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:50,148 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:50,150 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:50,212 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:50,215 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,637 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:58,639 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,640 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:43:58,642 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:43:58,644 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,645 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,647 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,649 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,650 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,651 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,652 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,653 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,654 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,655 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,656 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,657 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,658 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,659 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,660 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,661 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,662 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,664 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,665 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,666 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,948 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:58,950 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,959 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:58,962 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:59,047 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:59,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:59,132 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:59,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,563 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,567 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:44:07,569 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:44:07,572 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,573 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,574 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,576 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,577 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,578 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,579 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,580 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,581 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,582 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,583 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,584 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,587 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,590 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,590 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,592 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,912 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,914 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,924 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,928 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,991 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,993 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:08,066 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:08,069 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:40,066 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 27004 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:46:40,069 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:46:40,098 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:46:40,099 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:46:40,599 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:46:40,600 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:46:40,612 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:46:40,615 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:46:40,615 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:46:40,620 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:46:40,630 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:46:40,631 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:46:40,642 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 15:46:40,819 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:46:40,869 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:46:40,870 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:46:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:46:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:46:40,907 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:46:41,088 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:46:41,090 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:46:41,407 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:46:41,415 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:46:41,415 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:46:41,416 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:46:41,578 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:46:41,579 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1480 ms +2021-01-25 15:46:42,493 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:46:42,572 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:46:44,270 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:46:44,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:46:44,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:46:44,523 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:46:44,538 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:46:44,546 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:46:44,556 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.862 seconds (JVM running for 5.849) +2021-01-25 15:46:47,295 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:46:47,296 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:46:47,297 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:46:47,307 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:47,320 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:46:47,437 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:46:47,463 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:47,477 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:46:47,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:46:47,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:47,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,331 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,332 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,334 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,335 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,337 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,338 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,340 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,894 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:48,900 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,904 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:48,910 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:58,905 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:58,907 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:58,969 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:58,971 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:50:08,603 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,607 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:50:08,609 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:50:08,613 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,614 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,615 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,618 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,619 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,621 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,622 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,624 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,625 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,626 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,627 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,630 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,631 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,632 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,633 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,635 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,636 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,638 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,639 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,640 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:50:08,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,925 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:50:08,927 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:55,409 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18380 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:50:55,412 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:50:55,443 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:50:55,444 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:50:55,917 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:50:55,919 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:50:55,928 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:50:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:50:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:50:55,936 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:50:55,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:50:55,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:50:55,954 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:50:56,102 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:50:56,146 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:50:56,147 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:50:56,147 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:50:56,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:50:56,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:50:56,179 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:50:56,332 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:50:56,334 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:50:56,546 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:50:56,552 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:50:56,553 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:50:56,553 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:50:56,664 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:50:56,666 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1222 ms +2021-01-25 15:50:57,293 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:50:57,356 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:50:59,969 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:50:59,970 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:50:59,970 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:51:00,215 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:51:00,229 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:51:00,238 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:51:00,247 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.225 seconds (JVM running for 6.366) +2021-01-25 15:51:01,355 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:51:01,356 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:51:01,357 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:51:01,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:51:01,383 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:51:01,502 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:51:01,531 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:01,546 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:51:01,563 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:51:01,569 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:01,571 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,320 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,323 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,331 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,332 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,333 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,334 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,335 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,777 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:51:02,782 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,786 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:51:02,793 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:57,276 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18972 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:51:57,279 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:51:57,310 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:51:57,310 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:51:57,770 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:51:57,771 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:51:57,781 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:51:57,784 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:51:57,785 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:51:57,788 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:51:57,797 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:51:57,798 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:51:57,808 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:51:57,957 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:51:58,004 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:51:58,037 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:51:58,188 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:51:58,190 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:51:58,401 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:51:58,407 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:51:58,408 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:51:58,408 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:51:58,520 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:51:58,520 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1209 ms +2021-01-25 15:51:59,181 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:51:59,253 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:52:02,167 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:52:02,182 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:52:02,191 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:52:02,200 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.241 seconds (JVM running for 6.362) +2021-01-25 15:52:07,598 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:52:07,599 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:52:07,600 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:52:07,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:52:07,624 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:52:07,740 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:52:07,766 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:07,780 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:52:07,794 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:52:07,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:07,801 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,577 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,579 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,580 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,582 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,587 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,589 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,594 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,596 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,597 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,598 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,599 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,601 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:09,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:52:09,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:09,051 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:52:09,053 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:55:56,008 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25568 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:55:56,011 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:55:56,039 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:55:56,040 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:55:56,508 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:55:56,509 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:55:56,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:55:56,522 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:55:56,523 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:55:56,527 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:55:56,536 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:55:56,537 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:55:56,546 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:55:56,698 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:55:56,743 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:55:56,745 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:55:56,745 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:55:56,775 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:55:56,931 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:55:56,932 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:55:57,147 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:55:57,270 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:55:57,271 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1231 ms +2021-01-25 15:55:57,953 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:55:58,018 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:55:59,917 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:55:59,932 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:55:59,941 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:55:59,949 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.28 seconds (JVM running for 5.285) +2021-01-25 15:56:02,871 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:56:02,871 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:56:02,872 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:56:02,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:02,896 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:56:03,014 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:56:03,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,053 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:03,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:03,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,075 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,816 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,819 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,821 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,822 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,824 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,828 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,829 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,830 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,831 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,833 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,836 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,837 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,838 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:04,287 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:04,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:04,296 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:04,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,245 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:31,247 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,249 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:31,251 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:31,257 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,260 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,261 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,264 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,265 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,267 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,269 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,270 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,271 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,272 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,275 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,276 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,280 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,281 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,282 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,283 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,285 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,523 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:31,526 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:31,535 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,128 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:33,130 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,132 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:33,133 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:33,136 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,137 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,139 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,141 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,142 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,144 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,145 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,146 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,147 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,148 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,149 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,150 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,151 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,152 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,153 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,155 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,156 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,158 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,159 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,160 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,256 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:33,259 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,266 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:33,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,902 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:44,905 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,906 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:44,907 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:44,910 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,911 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,912 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,914 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,914 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,915 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,923 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,927 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,927 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,931 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,932 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,933 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:45,169 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:45,174 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:45,179 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:45,181 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,430 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:46,432 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,434 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:56:46,441 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:56:46,447 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,448 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,453 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,454 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,458 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,459 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,460 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,464 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,469 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,472 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,474 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:46,592 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,602 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:46,604 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,069 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:54,071 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,073 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:54,075 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:54,077 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,079 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,079 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,080 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,081 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,082 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,083 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,084 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,084 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,085 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,086 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,087 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,087 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,091 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,092 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,094 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,094 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,095 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,200 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:54,203 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,213 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:54,215 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,703 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:55,705 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,706 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:56:55,709 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:56:55,714 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,715 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,719 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,720 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,723 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,724 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,725 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,729 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,730 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,732 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,733 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,734 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,738 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,843 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:55,847 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,856 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:55,858 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,890 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:56,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,892 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:56,895 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:56,898 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,899 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,900 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,901 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,901 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,902 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,903 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,904 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,904 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,905 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,906 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,907 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,907 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,908 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,909 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,910 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,911 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,913 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,914 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,915 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:57,010 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:57,013 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:57,022 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:57,024 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:58,072 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,073 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:56:58,077 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:56:58,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,084 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,087 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,088 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,089 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,092 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,102 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,104 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,210 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:58,214 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,219 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:58,221 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,057 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:39,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:58:39,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,076 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,081 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,082 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,085 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,086 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,086 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,087 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,089 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,090 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,091 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,091 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,092 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,096 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,098 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,102 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,105 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,106 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,108 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,110 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,112 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,113 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,230 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:39,232 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:46,112 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,114 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:58:46,117 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:58:46,122 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,124 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,127 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,128 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,129 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,132 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,133 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,134 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,138 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,139 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,140 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,141 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,142 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,143 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,146 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,148 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,250 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:46,252 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,280 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:46,282 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:04,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:04,563 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:04,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:04,569 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:04,811 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:04,813 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:06,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,348 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:59:06,352 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:59:06,355 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,356 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,367 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,374 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,376 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,475 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:06,477 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:06,487 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:00:43,299 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,300 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:00:43,303 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:00:43,307 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,308 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,312 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,314 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,319 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,323 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,324 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,325 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,326 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,327 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,329 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,333 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,562 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:00:43,565 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,570 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:00:43,571 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:33,834 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24188 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 16:01:33,839 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 16:01:33,892 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 16:01:33,892 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 16:01:34,634 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:01:34,636 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:01:34,648 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 16:01:34,652 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:01:34,653 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:01:34,657 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 16:01:34,669 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:01:34,670 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 16:01:34,682 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 16:01:34,876 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 16:01:34,928 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 16:01:34,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:01:34,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:01:34,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:01:34,970 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 16:01:35,165 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 16:01:35,167 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 16:01:35,445 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 16:01:35,458 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 16:01:35,459 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 16:01:35,459 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 16:01:35,586 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 16:01:35,586 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1693 ms +2021-01-25 16:01:36,291 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 16:01:36,354 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 16:01:38,358 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 16:01:38,376 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 16:01:38,386 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 16:01:38,398 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.128 seconds (JVM running for 6.344) +2021-01-25 16:01:38,437 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 16:01:38,437 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 16:01:38,438 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 16:01:38,451 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:38,467 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 16:01:38,610 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 16:01:38,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,657 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:01:38,666 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:01:38,673 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,674 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,691 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,697 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,701 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,705 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,707 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,708 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,714 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,720 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,723 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:39,448 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:39,454 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:39,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:39,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,186 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:42,187 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,189 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 16:01:42,195 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 16:01:42,198 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,199 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,779 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,781 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,782 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,783 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,785 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,786 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,787 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,789 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,791 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,792 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,793 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,796 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,797 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,799 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,800 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,801 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,802 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,804 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,910 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:42,913 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,920 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:42,922 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,561 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:51,563 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,564 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:01:51,567 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:01:51,572 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,574 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,577 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,579 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,580 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,583 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,584 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,585 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,589 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,591 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,592 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,593 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,594 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,595 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,598 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,599 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,710 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:51,713 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:51,722 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,599 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:54,601 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,602 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:01:54,606 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:01:54,610 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,612 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,617 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,618 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,620 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,622 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,623 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,627 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,628 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,630 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,631 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,632 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,633 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,636 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:54,747 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,754 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:54,756 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,395 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:56,397 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,398 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 16:01:56,399 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 16:01:56,403 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,404 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,405 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,406 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,407 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,409 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,410 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,412 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,413 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,415 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,417 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,418 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,419 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,420 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,421 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,422 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,423 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,424 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,522 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:56,523 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,534 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:56,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,512 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:15,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:02:15,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:02:15,524 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,529 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,530 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,531 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,533 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,536 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,539 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,540 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,541 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,542 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,543 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,544 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,547 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,548 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,791 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:15,794 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,799 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:15,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:18,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:18,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:18,713 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:18,714 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:18,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:18,819 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,235 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:20,237 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,242 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:20,244 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:02:20,245 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,246 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,248 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,393 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:20,396 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,962 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:33,964 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,965 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:02:33,969 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:02:33,973 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,974 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,976 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,977 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,981 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,984 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,989 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,993 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,995 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,996 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:34,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:34,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:34,285 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:34,287 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,605 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:03:32,607 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,608 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:03:32,609 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:03:32,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,613 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,614 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,855 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:03:32,857 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,438 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:06,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,441 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:06,443 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:04:06,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,448 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,449 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,688 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:06,689 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:22,771 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26164 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 16:04:22,773 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 16:04:22,804 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 16:04:22,805 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 16:04:23,267 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:04:23,269 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:04:23,279 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 16:04:23,281 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:04:23,281 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:04:23,285 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 16:04:23,294 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:04:23,295 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 16:04:23,304 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 16:04:23,453 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 16:04:23,490 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:04:23,521 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 16:04:23,675 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 16:04:23,677 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 16:04:23,895 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 16:04:23,901 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 16:04:23,902 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 16:04:23,902 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 16:04:24,003 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 16:04:24,004 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1199 ms +2021-01-25 16:04:24,616 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 16:04:24,679 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 16:04:26,518 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 16:04:26,533 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 16:04:26,542 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 16:04:26,550 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.111 seconds (JVM running for 4.969) +2021-01-25 16:04:29,519 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 16:04:29,520 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 16:04:29,521 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 16:04:29,532 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:29,544 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 16:04:29,661 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 16:04:29,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,702 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:04:29,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:04:29,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,731 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,733 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,735 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,740 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,742 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,745 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,747 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,748 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,750 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,753 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,755 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,758 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,760 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:30,318 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:30,325 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:30,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:30,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,582 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:31,584 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,586 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:04:31,590 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:04:31,594 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,596 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,599 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,601 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,602 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,607 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,609 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,610 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,613 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,615 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,616 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,617 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,619 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,620 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,623 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,625 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,726 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:31,729 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:31,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,131 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:45,134 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,140 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:45,141 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:04:45,143 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,144 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,145 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,146 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,385 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:45,389 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,349 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:04,351 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,352 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:05:04,355 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:05:04,361 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,363 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,366 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,367 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,369 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,372 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,373 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,374 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,377 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,378 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,379 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,380 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,381 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,382 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,385 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,386 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,619 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:04,621 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,629 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:04,631 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,654 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:05,656 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,657 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:05:05,662 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:05:05,667 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,668 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,671 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,672 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,673 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,678 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,679 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,680 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,683 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,788 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:05,790 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,797 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:05,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:07,979 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:07,981 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:07,996 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:07,998 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,289 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:35,292 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,293 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:35,296 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:05:35,298 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,300 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,301 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,302 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,542 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:35,545 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,404 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:44,406 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,407 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:44,408 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:05:44,409 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,410 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,411 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,412 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,552 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:44,555 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,096 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:52,098 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,099 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:05:52,102 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:05:52,106 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,107 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,111 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,112 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,113 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,116 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,117 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,118 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,121 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,123 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,124 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,125 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,127 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,128 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,131 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,132 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,237 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:52,239 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,244 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:52,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:16,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:16,800 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:16,804 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:16,806 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:16,916 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:16,918 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,154 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:19,155 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,157 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:06:19,158 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:06:19,159 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,160 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,161 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,266 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:19,269 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:41,926 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2088 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:19:41,929 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:19:41,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:19:41,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:19:42,466 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:19:42,467 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:19:42,477 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:19:42,480 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:19:42,481 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:19:42,485 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:19:42,494 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:19:42,495 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:19:42,504 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 17:19:42,662 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:19:42,702 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:19:42,737 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:19:42,900 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:19:42,902 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:19:43,133 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:19:43,139 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:19:43,140 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:19:43,140 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:19:43,248 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:19:43,248 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1279 ms +2021-01-25 17:19:43,899 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:19:43,968 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:19:46,598 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:19:46,599 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:19:46,599 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:19:46,874 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:19:46,891 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:19:46,900 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:19:46,910 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.349 seconds (JVM running for 6.187) +2021-01-25 17:19:47,660 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:19:47,660 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:19:47,662 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:19:47,676 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:47,692 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:19:47,821 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:19:47,849 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:19:47,874 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:19:47,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,901 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,908 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,910 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,914 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,916 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,917 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,919 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,924 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,927 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,933 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:48,530 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:48,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:48,535 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:48,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:52,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:52,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:52,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:19:52,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:19:52,388 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:52,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,055 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,058 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,059 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,060 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,062 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,065 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,067 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,068 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,071 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,072 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,073 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,074 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,076 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,077 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,078 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,182 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:53,187 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,194 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:53,197 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,308 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:02,310 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:02,317 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,336 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,338 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,341 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,344 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,348 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,349 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,350 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,351 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,352 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,354 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,356 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,358 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,360 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,362 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,365 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,367 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,369 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,370 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,374 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,378 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,380 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,636 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:02,639 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:05,151 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:05,154 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:05,156 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:05,158 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:05,269 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:05,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,375 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:08,377 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,379 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:08,380 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,381 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,382 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,383 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,385 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,386 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,391 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,392 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,394 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,395 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,398 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,399 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,400 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,401 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,402 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,403 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,404 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,407 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,408 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,412 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,414 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,416 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,420 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,421 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,525 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:08,530 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:10,099 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:10,100 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:10,102 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:10,132 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:10,133 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:12,041 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:12,043 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:12,109 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:12,111 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:12,258 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:12,262 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,879 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:15,881 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,882 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:15,884 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,886 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,887 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,888 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,890 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,892 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,893 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,894 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,895 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,896 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,897 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,898 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,899 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,900 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,902 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,903 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,904 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,906 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,907 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,908 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,909 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,911 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,912 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,913 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,914 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,914 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,915 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,916 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,917 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,918 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,920 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,922 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,924 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,925 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:16,030 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:16,032 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:18,692 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:18,694 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:18,695 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:18,701 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:18,702 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:20,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,370 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:20,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,376 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,380 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,386 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,387 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,388 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,390 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,391 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,392 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,393 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,394 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,395 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,396 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,396 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,397 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,399 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,400 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,401 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,402 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,402 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,403 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,406 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,407 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,498 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:20,500 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,234 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:25,236 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,237 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:20:25,241 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:20:25,245 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,246 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,249 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,250 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,251 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,254 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,255 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,257 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,260 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,262 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,262 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,264 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,265 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,266 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,269 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,270 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:25,408 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:25,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:39,525 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:39,526 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:39,527 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:39,528 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:39,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:39,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:40,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:40,674 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:40,675 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:40,676 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:40,764 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:40,766 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,222 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:44,225 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,227 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:44,228 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,229 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,230 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,230 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,232 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,233 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,233 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,234 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,235 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,236 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,236 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,237 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,238 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,239 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,239 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,241 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,243 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,244 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,244 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,245 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,246 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,248 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,249 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,250 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,253 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,257 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,259 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,261 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,262 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,263 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,362 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:44,364 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:45,820 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:45,822 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:45,824 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:45,830 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:45,831 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:48,454 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:48,456 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:48,457 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:48,462 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:48,463 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:49,939 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:49,940 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:49,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:49,947 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:49,948 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,333 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:51,334 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,336 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:51,340 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,341 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,342 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,343 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,345 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,349 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,351 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,354 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,355 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,356 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,359 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,361 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,365 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,366 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,367 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,368 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,369 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,369 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,371 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,373 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,374 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,375 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,375 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,376 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:51,471 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,066 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:52,068 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,069 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:20:52,074 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:20:52,077 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,078 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,082 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,086 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,089 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,093 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,094 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,101 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,199 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:52,201 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,212 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:52,214 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:54,797 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:54,799 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:54,803 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:54,805 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:54,906 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:54,908 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,732 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:56,733 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,734 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:20:56,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:20:56,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,738 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,741 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,741 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,743 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,745 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,745 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,746 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,747 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,748 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,748 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,750 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,751 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,751 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,848 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:56,850 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,856 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:56,858 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:58,004 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:58,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:58,007 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:58,008 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:58,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:58,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:59,413 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:59,415 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:59,416 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:59,417 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:59,509 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:59,511 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:03,728 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,730 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:21:03,734 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:21:03,739 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,740 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,742 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,743 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,744 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,748 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,749 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,750 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,753 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,754 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,755 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,756 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,757 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,758 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,760 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,761 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,860 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:03,862 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:03,873 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:05,591 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:05,594 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:05,597 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:05,598 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:05,692 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:05,695 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:45,841 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2820 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:21:45,846 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:21:45,912 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:21:45,913 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:21:46,674 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:21:46,676 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:21:46,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:21:46,694 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:21:46,695 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:21:46,701 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:21:46,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:21:46,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:21:46,726 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 17:21:46,936 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:21:46,982 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:21:46,983 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:21:46,983 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:21:46,985 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:21:46,985 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:21:47,022 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:21:47,213 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:21:47,215 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:21:47,480 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:21:47,488 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:21:47,489 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:21:47,489 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:21:47,677 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:21:47,677 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1762 ms +2021-01-25 17:21:48,421 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:21:48,489 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:21:51,443 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:21:51,458 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:21:51,466 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:21:51,474 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.78 seconds (JVM running for 8.569) +2021-01-25 17:21:51,578 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:21:51,578 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:21:51,580 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-25 17:21:51,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:51,605 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:21:51,725 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:21:51,752 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:51,766 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:21:51,781 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:21:51,786 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:51,788 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,566 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,568 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,570 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,572 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,573 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,575 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,576 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,578 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,579 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,582 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,588 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,589 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:53,810 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:53,810 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:53,818 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:53,824 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:55,041 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,047 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:21:55,049 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,050 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,052 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,061 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,067 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,071 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,073 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,079 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,084 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,086 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,087 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,088 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,090 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,093 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,094 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,095 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,096 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,097 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,099 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,100 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,101 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,102 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,104 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,105 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,106 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,107 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,108 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,110 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,111 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,112 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,113 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,114 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:55,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:56,205 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:56,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:56,231 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:56,233 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:56,339 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:56,342 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,034 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:04,036 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,037 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:22:04,039 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,040 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,042 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,044 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,047 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,048 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,051 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,052 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,053 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,054 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,055 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,058 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,059 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,061 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,065 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,067 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,068 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,069 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,070 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,070 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,071 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,072 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,073 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,074 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,075 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,076 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,077 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,079 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,080 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,080 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,081 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,082 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,175 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:04,177 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:05,011 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:05,013 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:05,035 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:05,037 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:05,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:05,159 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:48,709 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18340 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:22:48,716 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:22:48,830 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:22:48,831 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:22:49,752 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:22:49,754 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:22:49,770 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:22:49,774 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:22:49,775 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:22:49,781 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:22:49,794 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:22:49,795 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:22:49,810 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2021-01-25 17:22:50,025 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:22:50,076 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:22:50,077 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:22:50,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:22:50,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:22:50,136 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:22:50,375 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:22:50,378 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:22:50,706 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:22:50,715 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:22:50,715 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:22:50,716 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:22:50,867 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:22:50,867 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2035 ms +2021-01-25 17:22:51,734 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:22:51,813 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:22:53,492 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:22:53,493 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:22:53,493 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:22:53,732 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:22:53,747 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:22:53,755 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:22:53,764 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.069 seconds (JVM running for 7.972) +2021-01-25 17:22:53,798 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:22:53,798 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:22:53,799 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:22:53,811 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:53,824 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:22:53,945 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:22:53,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:53,990 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:22:53,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:53,997 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,820 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,822 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,823 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,828 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,831 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,836 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,838 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,843 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,846 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,847 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,851 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,853 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,854 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,856 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,866 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,878 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,880 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,887 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,889 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,896 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:56,164 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:56,170 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:58,948 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:58,950 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:58,952 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:58,953 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:22:59,150 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:59,153 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:18,923 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 20712 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:25:18,930 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:25:19,010 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:25:19,011 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:25:19,853 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:25:19,855 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:25:19,871 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:25:19,875 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:25:19,876 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:25:19,881 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:25:19,894 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:25:19,895 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:25:19,909 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2021-01-25 17:25:20,122 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:25:20,179 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:25:20,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:25:20,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:25:20,183 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:25:20,221 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:25:20,406 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:25:20,408 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:25:20,644 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:25:20,650 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:25:20,650 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:25:20,651 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:25:20,768 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:25:20,768 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1755 ms +2021-01-25 17:25:21,471 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:25:21,541 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:25:23,220 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:25:23,220 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:25:23,221 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:25:23,507 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:25:23,525 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:25:23,537 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:25:23,550 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.355 seconds (JVM running for 6.255) +2021-01-25 17:25:43,526 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:25:43,527 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:25:43,528 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:25:43,540 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:43,553 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:25:43,672 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:25:43,698 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:43,717 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:25:43,722 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:43,724 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,407 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,416 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,423 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,426 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,427 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,428 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,431 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,433 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,435 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,436 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,438 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,441 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,442 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,445 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,447 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,450 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,453 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,460 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,462 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,468 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,473 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,475 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,476 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,935 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:44,939 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:46,899 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:46,901 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:46,903 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:46,904 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:25:47,010 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:47,013 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:47,022 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:47,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:38,861 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2660 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:26:38,865 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:26:38,923 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:26:38,924 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:26:39,889 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:26:39,893 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:26:39,922 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 21 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:26:39,933 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:26:39,934 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:26:39,946 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:26:39,970 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:26:39,973 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:26:40,001 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2021-01-25 17:26:40,407 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:26:40,493 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:26:40,496 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:26:40,497 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:26:40,498 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:26:40,499 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:26:40,499 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:26:40,500 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:26:40,500 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:26:40,572 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:26:40,879 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:26:40,882 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:26:41,254 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:26:41,272 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:26:41,273 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:26:41,273 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:26:41,422 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:26:41,422 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2496 ms +2021-01-25 17:26:42,290 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:26:42,374 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:26:44,225 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:26:44,226 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:26:44,226 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:26:44,470 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:26:44,485 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:26:44,494 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:26:44,502 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.283 seconds (JVM running for 7.919) +2021-01-25 17:26:44,616 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:26:44,616 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:26:44,617 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:26:44,629 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:44,643 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:26:44,761 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:26:44,790 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:44,809 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:26:44,813 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:44,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,915 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,929 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,939 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,945 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,956 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,964 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,965 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,968 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,973 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:45,978 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,982 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,984 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,987 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:45,991 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,993 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,997 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,999 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:46,001 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:46,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:46,006 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:46,007 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:46,009 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:46,011 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:46,014 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:46,015 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:46,016 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:46,019 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:46,977 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:46,983 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,464 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:48,467 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,469 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:26:48,470 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,471 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,473 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,474 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,476 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,481 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,482 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,483 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,486 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,487 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,488 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,489 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,490 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,492 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,492 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,493 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,495 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,496 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,497 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,498 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,500 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,502 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,503 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,505 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,506 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,509 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,510 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,511 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,512 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,513 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,514 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,516 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,517 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,622 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:48,624 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,143 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:53,145 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,148 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,149 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:26:53,253 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:53,255 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,265 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:53,267 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:55,567 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:55,569 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:55,571 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:26:55,600 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:55,601 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:57,027 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:57,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:57,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:57,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:26:57,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:57,159 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:57,170 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:57,172 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,193 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:13,194 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-25 17:27:13,241 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:13,242 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,243 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:27:13,245 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,246 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,248 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,253 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,254 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,257 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,258 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,259 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,261 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,262 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,264 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,265 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,266 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,268 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,269 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,271 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,273 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,274 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,274 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,275 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,279 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,280 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,282 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,283 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,284 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,285 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,286 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,541 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:13,543 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:27,051 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:27,053 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:27,054 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:27,055 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:27,293 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:27,296 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:29,588 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:29,590 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:29,592 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:27:29,599 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:29,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:30,654 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:30,655 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:30,657 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:30,658 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:30,759 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:30,761 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:34,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:34,568 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:34,569 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:27:34,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:34,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:35,376 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:35,377 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:35,379 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:35,380 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:35,479 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:35,482 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:37,305 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:37,307 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:37,308 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:37,309 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:37,430 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:37,432 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:47,267 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:47,269 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:47,270 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:47,271 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:47,367 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:47,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,204 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:52,207 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,208 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:27:52,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:27:52,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,222 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,235 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,237 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,238 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,242 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,243 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,244 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,247 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,248 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,249 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,250 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,251 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,252 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,255 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,256 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,357 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:52,360 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,368 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:52,370 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:54,976 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:54,977 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:54,982 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:54,984 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:55,089 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:55,091 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:07,855 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 14904 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:29:07,858 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:29:07,888 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:29:07,889 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:29:08,348 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:29:08,349 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:29:08,359 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:29:08,363 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:29:08,364 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:29:08,367 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:29:08,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:29:08,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:29:08,386 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 17:29:08,542 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:29:08,585 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:29:08,616 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:29:08,770 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:29:08,772 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:29:08,983 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:29:08,989 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:29:08,990 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:29:08,990 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:29:09,106 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:29:09,106 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1216 ms +2021-01-25 17:29:09,755 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:29:09,817 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:29:11,427 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:29:11,428 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:29:11,428 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:29:11,668 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:29:11,682 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:29:11,690 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:29:11,699 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.218 seconds (JVM running for 5.17) +2021-01-25 17:29:34,671 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:29:34,672 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:29:34,673 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:29:34,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:34,697 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:29:34,815 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:29:34,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:29:34,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:29:34,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,891 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,904 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,908 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,910 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,913 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,914 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,918 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,920 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:35,474 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:35,478 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:35,480 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:35,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:37,846 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:37,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:37,850 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:37,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:29:38,582 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:38,585 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:38,598 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:38,601 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:40,546 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:40,549 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:40,551 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:40,552 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:29:40,654 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:40,658 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:44,768 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:44,771 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:44,774 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:44,775 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:29:44,874 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:44,876 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,707 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:30:15,709 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:30:15,716 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:30:15,718 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,999 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:30:16,002 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,009 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:30,011 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,012 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:32:30,017 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:32:30,021 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,022 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,025 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,027 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,028 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,031 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,033 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,034 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,037 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,038 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,039 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,042 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,043 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,048 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:30,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,302 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:30,304 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:31,651 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,653 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:31,654 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:32:31,656 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,657 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,658 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,659 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,767 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:31,770 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,271 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:33,273 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,275 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:33,276 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:32:33,277 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,278 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,279 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,281 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,282 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,284 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,389 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:33,391 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:39,562 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26132 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:32:39,564 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:32:39,601 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:32:39,601 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:32:40,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:32:40,065 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:32:40,075 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:32:40,077 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:32:40,078 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:32:40,082 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:32:40,091 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:32:40,092 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:32:40,103 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 17:32:40,256 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:32:40,299 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:32:40,331 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:32:40,483 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:32:40,485 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:32:40,693 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:32:40,812 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:32:40,812 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1210 ms +2021-01-25 17:32:41,430 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:32:41,492 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:32:44,339 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:32:44,353 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:32:44,362 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:32:44,371 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.147 seconds (JVM running for 6.1) +2021-01-25 17:33:12,570 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:33:12,570 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:33:12,571 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 17:33:12,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:12,595 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:33:12,712 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:33:12,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,760 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:33:12,765 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:33:12,770 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,773 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,777 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,780 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,784 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,786 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:13,381 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:13,387 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:14,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:14,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:14,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:14,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:14,609 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:14,613 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:31,942 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25756 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:33:31,946 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:33:31,999 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:33:32,000 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:33:32,672 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:33:32,674 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:33:32,687 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:33:32,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:33:32,691 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:33:32,696 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:33:32,707 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:33:32,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:33:32,720 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 17:33:32,896 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:33:32,944 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:33:32,980 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:33:33,149 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:33:33,151 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:33:33,382 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:33:33,389 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:33:33,390 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:33:33,390 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:33:33,504 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:33:33,504 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1503 ms +2021-01-25 17:33:34,277 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:33:34,355 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:33:37,333 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:33:37,347 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:33:37,355 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:33:37,363 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.015 seconds (JVM running for 6.951) +2021-01-25 17:33:45,832 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:33:45,832 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:33:45,833 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 17:33:45,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:45,859 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:33:45,976 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:33:46,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:33:46,031 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:33:46,035 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,037 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,040 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,042 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,044 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:46,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,548 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:52,550 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,552 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:33:52,554 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:33:52,557 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,559 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,561 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,563 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,565 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,566 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:52,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:54,022 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:54,025 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:54,028 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:54,031 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:33:54,871 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:54,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:58,084 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:58,087 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:58,090 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:58,092 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:33:58,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:58,420 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:03,365 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:03,367 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:03,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:03,370 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:34:03,623 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:03,626 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:05,746 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:05,748 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:05,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:05,750 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:34:06,022 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:06,026 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:21,662 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,663 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:34:21,668 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:34:21,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,674 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,689 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,690 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,691 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,694 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,695 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,697 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,701 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,702 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,704 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,705 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,706 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,707 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,712 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:21,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,827 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:21,829 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,543 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:23,546 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,547 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:34:23,552 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:34:23,555 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,556 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,558 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,560 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,562 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,563 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,565 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,567 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,570 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,571 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,572 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,573 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,681 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:23,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,695 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:23,697 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,078 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:25,079 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,081 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:34:25,084 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:34:25,089 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,091 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,094 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,095 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,097 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,101 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,103 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,104 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,106 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,107 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,108 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,110 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,111 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,112 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,115 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,212 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:25,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,222 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:25,225 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:26,356 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:26,358 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:26,359 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:26,360 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:34:26,460 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:26,463 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,029 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:58,031 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,032 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:34:58,033 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:34:58,037 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,038 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,039 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,040 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,041 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,044 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,045 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,046 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,048 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,051 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,051 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,055 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,057 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,058 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,060 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,289 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:58,291 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,302 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:58,304 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:36:24,625 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:36:24,627 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:36:24,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:36:24,694 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,845 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:15,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,850 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:39:15,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:39:15,853 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,854 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,856 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,857 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,858 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,861 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,864 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,866 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,868 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,871 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,872 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,873 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,874 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,875 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,876 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,876 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,877 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:16,154 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,156 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,852 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:39:16,855 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:39:16,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,864 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,865 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,866 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,869 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,871 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,874 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,875 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,877 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,878 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,879 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,883 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,884 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,984 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,985 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,991 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,993 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:19,706 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:19,707 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:19,720 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:19,721 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,843 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:40:15,845 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,847 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:40:15,850 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:40:15,853 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,854 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,857 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,859 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,861 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,864 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,865 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,866 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,868 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,869 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,870 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,872 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,873 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,877 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,878 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:16,109 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:40:16,111 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:16,118 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:40:16,119 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:46,940 INFO [lettuce-nioEventLoop-4-1] i.l.c.p.CommandHandler [AbstractInternalLogger.java:217] null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。 +java.io.IOException: 远程主机强迫关闭了一个现有的连接。 + at sun.nio.ch.SocketDispatcher.read0(Native Method) + at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43) + at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) + at sun.nio.ch.IOUtil.read(IOUtil.java:192) + at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) + at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:253) + at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1134) + at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:350) + at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:719) + at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:655) + at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:581) + at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) + at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) + at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) + at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) + at java.lang.Thread.run(Thread.java:748) +2021-01-25 17:40:47,037 INFO [lettuce-eventExecutorLoop-1-12] i.l.c.p.ConnectionWatchdog [AbstractInternalLogger.java:171] Reconnecting, last destination was localhost/127.0.0.1:6379 diff --git a/log/community/log_warn.log b/log/community/log_warn.log index 8f777ff2..88b00373 100644 --- a/log/community/log_warn.log +++ b/log/community/log_warn.log @@ -1,320 +1,550 @@ -2021-01-24 11:46:02,257 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,259 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,260 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,260 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,261 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,261 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,262 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,262 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,262 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,263 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,263 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,264 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,264 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,264 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,265 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,265 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,266 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,266 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,266 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:46:02,267 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,075 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,076 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,076 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,980 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,980 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,981 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,981 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,981 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,983 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,983 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,983 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,984 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,984 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,984 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,985 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,985 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,985 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,986 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 11:49:02,986 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,440 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,441 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,442 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,442 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,443 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,443 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,444 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,444 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,445 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,445 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,446 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,446 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,447 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,448 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,448 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,449 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,450 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,451 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,451 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:03:13,452 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,885 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,886 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,886 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,887 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,887 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,888 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,888 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,889 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,889 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,890 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,890 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,891 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,892 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,892 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,892 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,893 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,893 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,894 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,894 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:58,894 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,400 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,401 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,401 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,401 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,405 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,405 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 12:37:59,405 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,539 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,539 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,543 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 13:01:17,543 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,073 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,078 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:25:23,078 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,157 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,157 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:34:15,157 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,488 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,490 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,490 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,490 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:42:41,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,500 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,910 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,910 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,914 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:19:12,914 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,552 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,556 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,556 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:22:07,556 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,614 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,618 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:25:24,618 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-24 16:49:09,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,824 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,826 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,826 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:05,182 WARN [http-nio-8080-exec-9] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "abc"] +2021-01-25 11:06:51,666 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:09,259 WARN [http-nio-8080-exec-1] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "asd"] +2021-01-25 11:14:42,490 WARN [http-nio-8080-exec-6] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "asd"] +2021-01-25 11:17:08,932 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,751 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,755 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,755 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,181 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,181 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,185 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:57,761 WARN [http-nio-8080-exec-6] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:16:15,020 WARN [http-nio-8080-exec-4] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:16:18,420 WARN [http-nio-8080-exec-3] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:16:20,883 WARN [http-nio-8080-exec-7] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:17:35,392 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,197 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,211 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,620 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,028 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,230 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,545 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,545 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,549 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,549 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:20:12,051 WARN [http-nio-8080-exec-7] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "profile.html"] +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:56,215 WARN [http-nio-8080-exec-1] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id"] +2021-01-25 17:22:05,019 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id"] +2021-01-25 17:22:52,433 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,168 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,036 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,053 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. diff --git a/log/community/warn/log-warn-2021-01-24.0.log b/log/community/warn/log-warn-2021-01-24.0.log new file mode 100644 index 00000000..8f777ff2 --- /dev/null +++ b/log/community/warn/log-warn-2021-01-24.0.log @@ -0,0 +1,320 @@ +2021-01-24 11:46:02,257 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,259 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,260 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,260 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,261 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,261 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,262 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,262 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,262 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,263 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,263 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,264 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,264 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,264 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,265 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,265 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,266 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,266 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,266 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:46:02,267 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,075 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,076 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,076 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,077 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,078 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,079 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:47:17,080 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,980 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,980 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,981 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,981 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,981 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,982 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,983 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,983 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,983 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,984 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,984 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,984 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,985 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,985 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,985 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,986 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 11:49:02,986 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,440 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,441 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,442 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,442 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,443 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,443 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,444 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,444 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,445 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,445 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,446 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,446 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,447 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,448 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,448 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,449 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,450 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,451 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,451 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:03:13,452 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,885 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,886 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,886 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,887 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,887 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,888 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,888 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,889 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,889 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,890 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,890 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,891 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,892 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,892 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,892 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,893 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,893 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,894 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,894 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:58,894 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,400 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,401 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,401 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,401 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,402 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,403 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,404 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,405 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,405 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 12:37:59,405 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,539 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,539 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,540 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,541 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,542 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,543 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 13:01:17,543 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,073 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,074 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,075 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,076 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,077 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,078 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:25:23,078 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,157 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,157 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:34:15,157 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,488 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,489 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,490 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,490 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,490 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:42:41,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:08,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,500 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,502 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,503 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 15:45:58,504 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,910 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,910 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,911 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,912 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,913 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,914 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:19:12,914 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,552 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,553 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,554 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,555 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,556 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,556 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:22:07,556 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,614 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,615 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,616 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,617 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,618 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:25:24,618 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,497 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,498 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,499 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-24 16:49:09,501 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. diff --git a/pom.xml b/pom.xml index 394b680d..84fadbca 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ community 0.0.1-SNAPSHOT community - Demo project for Spring Boot + greate community — Echo 1.8 diff --git a/src/main/java/com/greate/community/aspect/ServiceLogAspect.java b/src/main/java/com/greate/community/aspect/ServiceLogAspect.java new file mode 100644 index 00000000..3404818f --- /dev/null +++ b/src/main/java/com/greate/community/aspect/ServiceLogAspect.java @@ -0,0 +1,43 @@ +package com.greate.community.aspect; + +import org.aspectj.lang.JoinPoint; +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Before; +import org.aspectj.lang.annotation.Pointcut; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.stereotype.Component; +import org.springframework.web.context.request.RequestAttributes; +import org.springframework.web.context.request.RequestContextHolder; +import org.springframework.web.context.request.ServletRequestAttributes; + +import javax.servlet.http.HttpServletRequest; +import java.text.SimpleDateFormat; +import java.util.Date; + +/** + * 统一日志记录 + */ +@Component +@Aspect +public class ServiceLogAspect { + + private static final Logger logger = LoggerFactory.getLogger(ServiceLogAspect.class); + + @Pointcut("execution(* com.greate.community.service.*.*(..))") + public void pointcut() { + + } + + @Before("pointcut()") + public void before(JoinPoint joinPoint) { + // 用户[IP 地址], 在某个时间访问了 [com.greate.community.service.xxx] + ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); + HttpServletRequest request = attributes.getRequest(); + String ip = request.getRemoteHost(); + String time = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); + String target = joinPoint.getSignature().getDeclaringTypeName() + "." + joinPoint.getSignature().getName(); + logger.info(String.format("用户[%s], 在[%s], 访问了[%s].", ip, time, target)); + } + +} diff --git a/src/main/java/com/greate/community/config/RedisConfig.java b/src/main/java/com/greate/community/config/RedisConfig.java new file mode 100644 index 00000000..0c40dcb9 --- /dev/null +++ b/src/main/java/com/greate/community/config/RedisConfig.java @@ -0,0 +1,34 @@ +package com.greate.community.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.data.redis.connection.RedisConnectionFactory; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.data.redis.serializer.RedisSerializer; + +/** + * Redis 配置类 + */ +@Configuration +public class RedisConfig { + + @Bean + public RedisTemplate redisTemplate(RedisConnectionFactory factory) { + RedisTemplate template = new RedisTemplate<>(); + template.setConnectionFactory(factory); + + // 设置 key 的序列化的方式 + template.setKeySerializer(RedisSerializer.string()); + // 设置 value 的序列化的方式 + template.setValueSerializer(RedisSerializer.json()); + // 设置 hash 的 key 的序列化的方式 + template.setHashKeySerializer(RedisSerializer.string()); + // 设置 hash 的 value 的序列化的方式 + template.setHashValueSerializer(RedisSerializer.json()); + + template.afterPropertiesSet(); + + return template; + } + +} diff --git a/src/main/java/com/greate/community/controller/DiscussPostController.java b/src/main/java/com/greate/community/controller/DiscussPostController.java index a7b2a82c..61736d83 100644 --- a/src/main/java/com/greate/community/controller/DiscussPostController.java +++ b/src/main/java/com/greate/community/controller/DiscussPostController.java @@ -6,6 +6,7 @@ import com.greate.community.entity.Page; import com.greate.community.entity.User; import com.greate.community.service.CommentService; import com.greate.community.service.DiscussPostSerivce; +import com.greate.community.service.LikeService; import com.greate.community.service.UserService; import com.greate.community.util.CommunityConstant; import com.greate.community.util.CommunityUtil; @@ -33,6 +34,9 @@ public class DiscussPostController implements CommunityConstant { @Autowired private CommentService commentService; + @Autowired + private LikeService likeService; + /** * 添加帖子(发帖) * @param title @@ -55,7 +59,6 @@ public class DiscussPostController implements CommunityConstant { discussPostSerivce.addDiscussPost(discussPost); - // 报错的情况将来会统一处理 return CommunityUtil.getJSONString(0, "发布成功"); } @@ -73,6 +76,13 @@ public class DiscussPostController implements CommunityConstant { // 作者 User user = userService.findUserById(discussPost.getUserId()); model.addAttribute("user", user); + // 点赞数量 + long likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_POST, discussPostId); + model.addAttribute("likeCount", likeCount); + // 当前登录用户的点赞状态 + int likeStatus = hostHolder.getUser() == null ? 0 : + likeService.findEntityLikeStatus(hostHolder.getUser().getId(), ENTITY_TYPE_POST, discussPostId); + model.addAttribute("likeStatus", likeStatus); // 评论分页信息 page.setLimit(5); @@ -88,21 +98,32 @@ public class DiscussPostController implements CommunityConstant { for (Comment comment : commentList) { // 对帖子的评论 Map commentVo = new HashMap<>(); - commentVo.put("comment", comment); - commentVo.put("user", userService.findUserById(comment.getUserId())); + commentVo.put("comment", comment); // 评论 + commentVo.put("user", userService.findUserById(comment.getUserId())); // 作者 + likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_COMMENT, comment.getId()); // 点赞数量 + commentVo.put("likeCount", likeCount); + likeStatus = hostHolder.getUser() == null ? 0 : likeService.findEntityLikeStatus( + hostHolder.getUser().getId(), ENTITY_TYPE_COMMENT, comment.getId()); // 当前登录用户的点赞状态 + commentVo.put("likeStatus", likeStatus); + // 存储评论的评论(不做分页) List replyList = commentService.findCommentByEntity( ENTITY_TYPE_COMMENT, comment.getId(), 0, Integer.MAX_VALUE); List> replyVoList = new ArrayList<>(); // 封装对评论的评论和评论的作者信息 if (replyList != null) { - // 对评论的评论 + // 对评论的评论(回复) for (Comment reply : replyList) { Map replyVo = new HashMap<>(); - replyVo.put("reply", reply); - replyVo.put("user", userService.findUserById(reply.getUserId())); - User target = reply.getTargetId() == 0 ? null : userService.findUserById(reply.getUserId()); + replyVo.put("reply", reply); // 回复 + replyVo.put("user", userService.findUserById(reply.getUserId())); // 作者 + User target = reply.getTargetId() == 0 ? null : userService.findUserById(reply.getUserId()); // 回复目标 replyVo.put("target", target); + likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_COMMENT, reply.getId()); // 点赞数量 + replyVo.put("likeCount", likeCount); + likeStatus = hostHolder.getUser() == null ? 0 : likeService.findEntityLikeStatus( + hostHolder.getUser().getId(), ENTITY_TYPE_COMMENT, reply.getId()); // 当前登录用户的点赞状态 + replyVo.put("likeStatus", likeStatus); replyVoList.add(replyVo); } diff --git a/src/main/java/com/greate/community/controller/HomeController.java b/src/main/java/com/greate/community/controller/HomeController.java index c0c3bb35..3d5effc8 100644 --- a/src/main/java/com/greate/community/controller/HomeController.java +++ b/src/main/java/com/greate/community/controller/HomeController.java @@ -4,7 +4,9 @@ import com.greate.community.entity.DiscussPost; import com.greate.community.entity.Page; import com.greate.community.entity.User; import com.greate.community.service.DiscussPostSerivce; +import com.greate.community.service.LikeService; import com.greate.community.service.UserService; +import com.greate.community.util.CommunityConstant; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; @@ -19,7 +21,7 @@ import java.util.Map; * 处理首页逻辑 */ @Controller -public class HomeController { +public class HomeController implements CommunityConstant { @Autowired private DiscussPostSerivce discussPostSerivce; @@ -27,6 +29,15 @@ public class HomeController { @Autowired private UserService userService; + @Autowired + private LikeService likeService; + + /** + * 进入首页 + * @param model + * @param page + * @return + */ @GetMapping("/index") public String getIndexPage(Model model, Page page) { // 获取总页数 @@ -43,6 +54,9 @@ public class HomeController { map.put("post", post); User user = userService.findUserById(post.getUserId()); map.put("user", user); + long likeCount = likeService.findEntityLikeCount(ENTITY_TYPE_POST, post.getId()); + map.put("likeCount", likeCount); + discussPosts.add(map); } } @@ -50,4 +64,13 @@ public class HomeController { return "index"; } + /** + * 进入 500 错误界面 + * @return + */ + @GetMapping("/error") + public String getErrorPage() { + return "/error/500"; + } + } diff --git a/src/main/java/com/greate/community/controller/LikeController.java b/src/main/java/com/greate/community/controller/LikeController.java new file mode 100644 index 00000000..06eca36a --- /dev/null +++ b/src/main/java/com/greate/community/controller/LikeController.java @@ -0,0 +1,52 @@ +package com.greate.community.controller; + +import com.greate.community.entity.User; +import com.greate.community.service.LikeService; +import com.greate.community.util.CommunityUtil; +import com.greate.community.util.HostHolder; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.ResponseBody; + +import java.util.HashMap; +import java.util.Map; + +/** + * 点赞 + */ +@Controller +public class LikeController { + + @Autowired + private HostHolder hostHolder; + + @Autowired + private LikeService likeService; + + /** + * 点赞 + * @param entityType + * @param entityId + * @param entityUserId 赞的帖子/评论的作者 id + * @return + */ + @PostMapping("/like") + @ResponseBody + public String like(int entityType, int entityId, int entityUserId) { + User user = hostHolder.getUser(); + // 点赞 + likeService.like(user.getId(), entityType, entityId, entityUserId); + // 点赞数量 + long likeCount = likeService.findEntityLikeCount(entityType, entityId); + // 点赞状态 + int likeStatus = likeService.findEntityLikeStatus(user.getId(), entityType, entityId); + + Map map = new HashMap<>(); + map.put("likeCount", likeCount); + map.put("likeStatus", likeStatus); + + return CommunityUtil.getJSONString(0, null, map); + } + +} diff --git a/src/main/java/com/greate/community/controller/MessageController.java b/src/main/java/com/greate/community/controller/MessageController.java index f2c6fa47..149ab192 100644 --- a/src/main/java/com/greate/community/controller/MessageController.java +++ b/src/main/java/com/greate/community/controller/MessageController.java @@ -34,6 +34,7 @@ public class MessageController { */ @GetMapping("/letter/list") public String getLetterList(Model model, Page page) { + // Integer.valueOf("abc"); // 测试统一异常处理(普通请求) User user = hostHolder.getUser(); // 分页信息 page.setLimit(5); @@ -156,6 +157,7 @@ public class MessageController { @PostMapping("/letter/send") @ResponseBody public String sendLetter(String toName, String content) { + // Integer.valueOf("abc"); // 测试统一异常处理(异步请求) User target = userService.findUserByName(toName); if (target == null) { return CommunityUtil.getJSONString(1, "目标用户不存在"); diff --git a/src/main/java/com/greate/community/controller/UserController.java b/src/main/java/com/greate/community/controller/UserController.java index e20af7af..c0580fb9 100644 --- a/src/main/java/com/greate/community/controller/UserController.java +++ b/src/main/java/com/greate/community/controller/UserController.java @@ -2,6 +2,7 @@ package com.greate.community.controller; import com.greate.community.annotation.LoginRequired; import com.greate.community.entity.User; +import com.greate.community.service.LikeService; import com.greate.community.service.UserService; import com.greate.community.util.CommunityUtil; import com.greate.community.util.HostHolder; @@ -41,6 +42,9 @@ public class UserController { @Autowired private HostHolder hostHolder; + @Autowired + private LikeService likeService; + // 网站域名 @Value("${community.path.domain}") private String domain; @@ -165,4 +169,27 @@ public class UserController { return "redirect:/index"; } + + /** + * 进入个人主页 + * @param userId 可以进入任意用户的个人主页 + * @param model + * @return + */ + @GetMapping("/profile/{userId}") + public String getProfilePage(@PathVariable("userId") int userId, Model model) { + User user = userService.findUserById(userId); + if (user == null) { + throw new RuntimeException("该用户不存在"); + } + + // 用户 + model.addAttribute("user", user); + // 获赞数量 + int userLikeCount = likeService.findUserLikeCount(userId); + model.addAttribute("userLikeCount", userLikeCount); + + return "/site/profile"; + } + } diff --git a/src/main/java/com/greate/community/controller/advice/ExceptionAdvice.java b/src/main/java/com/greate/community/controller/advice/ExceptionAdvice.java new file mode 100644 index 00000000..52ca9f3d --- /dev/null +++ b/src/main/java/com/greate/community/controller/advice/ExceptionAdvice.java @@ -0,0 +1,43 @@ +package com.greate.community.controller.advice; + +import com.greate.community.util.CommunityUtil; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.ControllerAdvice; +import org.springframework.web.bind.annotation.ExceptionHandler; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; +import java.io.PrintWriter; + +/** + * 处理服务端异常(500) + */ +@ControllerAdvice(annotations = Controller.class) // 扫描带有 @Controller 的组件 +public class ExceptionAdvice { + + private static final Logger logger = LoggerFactory.getLogger(ExceptionAdvice.class); + + @ExceptionHandler({Exception.class}) + public void handleException(Exception e, HttpServletRequest request, HttpServletResponse response) throws IOException { + logger.error("服务器发生异常:" + e.getMessage()); + for (StackTraceElement element : e.getStackTrace()) { + logger.error(element.toString()); + } + // 区分异步请求和普通请求 + String xRequestedWith = request.getHeader("x-requested-with"); + if ("XMLHttpRequest".equals(xRequestedWith)) { + // 异步请求(希望返回的是 JSON 数据) + response.setContentType("application/plain;charset=utf-8"); + PrintWriter writer = response.getWriter(); + writer.write(CommunityUtil.getJSONString(1, "服务器异常")); + } + else { + // 普通请求(希望返回的是一个网页) + response.sendRedirect(request.getContextPath() + "/error"); + } + } + +} diff --git a/src/main/java/com/greate/community/service/LikeService.java b/src/main/java/com/greate/community/service/LikeService.java new file mode 100644 index 00000000..a10fe6f6 --- /dev/null +++ b/src/main/java/com/greate/community/service/LikeService.java @@ -0,0 +1,89 @@ +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.core.RedisOperations; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.data.redis.core.SessionCallback; +import org.springframework.stereotype.Service; + +/** + * 点赞相关 + */ +@Service +public class LikeService { + + @Autowired + private RedisTemplate redisTemplate; + + /** + * 点赞 + * @param userId 点赞的用户 id + * @param entityType + * @param entityId + * @param entityUserId 被赞的帖子/评论的作者 id + */ + public void like(int userId, int entityType, int entityId, int entityUserId) { + redisTemplate.execute(new SessionCallback() { + @Override + public Object execute(RedisOperations redisOperations) throws DataAccessException { + String entityLikeKey = RedisKeyUtil.getEntityLikeKey(entityType, entityId); + String userLikeKey = RedisKeyUtil.getUserLikeKey(entityUserId); + + // 判断用户是否已经点过赞了 + boolean isMember = redisOperations.opsForSet().isMember(entityLikeKey, userId); + + redisOperations.multi(); // 开启事务 + + if (isMember) { + // 如果用户已经点过赞,点第二次则取消赞 + redisOperations.opsForSet().remove(entityLikeKey, userId); + redisOperations.opsForValue().decrement(userLikeKey); + } + else { + redisTemplate.opsForSet().add(entityLikeKey, userId); + redisOperations.opsForValue().increment(userLikeKey); + } + + return redisOperations.exec(); // 提交事务 + } + }); + } + + /** + * 查询某实体被点赞的数量 + * @param entityType + * @param entityId + * @return + */ + public long findEntityLikeCount(int entityType, int entityId) { + String entityLikeKey = RedisKeyUtil.getEntityLikeKey(entityType, entityId); + return redisTemplate.opsForSet().size(entityLikeKey); + } + + /** + * 查询某个用户对某个实体的点赞状态(是否已赞) + * @param userId + * @param entityType + * @param entityId + * @return 1:已赞,0:未赞 + */ + public int findEntityLikeStatus(int userId, int entityType, int entityId) { + String entityLikeKey = RedisKeyUtil.getEntityLikeKey(entityType, entityId); + return redisTemplate.opsForSet().isMember(entityLikeKey, userId) ? 1 : 0; + } + + /** + * 查询某个用户获得赞数量 + * @param userId + * @return + */ + public int findUserLikeCount(int userId) { + String userLikeKey = RedisKeyUtil.getUserLikeKey(userId); + Integer count = (Integer) redisTemplate.opsForValue().get(userLikeKey); + return count == null ? 0 : count; + } + +} + diff --git a/src/main/java/com/greate/community/util/RedisKeyUtil.java b/src/main/java/com/greate/community/util/RedisKeyUtil.java new file mode 100644 index 00000000..cb50457d --- /dev/null +++ b/src/main/java/com/greate/community/util/RedisKeyUtil.java @@ -0,0 +1,25 @@ +package com.greate.community.util; + +/** + * 生成 Redis 的 key + */ +public class RedisKeyUtil { + + private static final String SPLIT = ":"; + private static final String PREFIX_ENTITY_LIKE = "like:entity"; + private static final String PREFIX_USER_LIKE = "like:user"; + + // 某个实体(帖子、评论/回复)的赞 + // like:entity:entityType:entityId -> set(userId) + // 谁给这个实体点了赞,就将这个用户的id存到这个实体对应的集合里 + public static String getEntityLikeKey(int entityType, int entityId) { + return PREFIX_ENTITY_LIKE + SPLIT + entityType + SPLIT + entityId; + } + + // 某个用户的赞(被赞) + // like:user:userId -> int + public static String getUserLikeKey(int userId) { + return PREFIX_ENTITY_LIKE + SPLIT + userId; + } + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index fce02af1..1371eeeb 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -34,3 +34,7 @@ spring.mail.password = 88161b147d8eff41 spring.mail.protocol = smtps spring.mail.properties.mail.smtp.ssl.enable = true +# Redis +spring.redis.database = 11 +spring.redis.host = localhost +spring.redis.port = 6379 diff --git a/src/main/resources/static/img/404.png b/src/main/resources/static/img/404.png index 80080a51b6fae7420bac63c2c9a07fe488248a25..9dc273ec66253d2545255d59fc4bca5698a4eed8 100644 GIT binary patch literal 27828 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

<#B1# z>Me~iQh>|ODo-&D6)8tRj)#*9sWXj5r#gF#IeLuowI^2BLB_d^F*?q~_t5QgVRY@R zu&|zEi4k7IWy~C@5h>%Xz^;Ru|^;+>nfk@>R3 z`UZJ#YI-JSsEF$_=-49G45itwWpLi@!3ZPb{Fe1qK~zyVU+(I{Q#}g znqv~jBw4I~BOr7dU`h8ETwfSu=k&Z6F&znGs>~=wzZ>Sv;8u*ZoIt z0k8?^gGaUB_}>Q&#zCCMP$}9^BoQe?0|UAJ#mQ0%mc5BJKVO)A4lWAb;HDwvu?`C9 zw-0+d`i*YEDBq*pPUTi{-SP?^kMHczepJ3raU8i_8>4a!AD2M=?yjOt-$l1 z!pXyRfHp*B@#_Yg3r}Gteb_uad`PdTIF^nQs>mDykW`rX$m8V5$X^dA?{Prt^whB{ z`F=>1UEn$4b|7ms35DGEB00F3-dBMIgNIj|#33@P=u1Kx-Yc$!Bznn^C(co7;2y1= z?;aRseCaQt^HM5^_uxVgf%A`Hd)FM*uqC4Gtj6B{{&Ar9Q(0TvQwp^M#bvr%ENLx< zAns0l`5I|g)G9~f=Wy-Fnoe)KsfVc5r#9;?gG}0xr&zdZ(C_fOR~@Zm;!M$r&x$z7 z=eRaY^1VAkCvq+f>bi+-v_I8U*1UMWiI~Vtd=7FdPKL`E0SXdYHO$F9`q_Cygr|G7 zL`o%yC4N7-T|B+KKK-69qqZm_4l8eWKY0VK)ki@^ee|K;rhrJC;TdfScG(21-l5^} zU(qrq-MY0tSC0Ps6Sn>R?l2&qzm^H3Y~1gj_oJxRiHmpng1;CTnH*s64%Nd)5ATb!56S2Fxxw?KJ z>9D>AKdjaBqLS?Hf|IU3FK^Qo3ZvID7p}Fs_ib%EyL3{l<{IxakdGGW`@8s`s5sr5 zbH3YZ-s)CU=@HkAo>=^eWYxP|g`l^zdESFq+C?;OnmT<0UKfO^UO<^agjpt9#Y~m$ zEyumDW8yLcD!N(iKC?rGg90(z&^=Os6Y^;xazZm#FTd47m@x9!_o*=@)193;QSH{M z6=8L-ReKz>UYM=Qfk}(n*P2P!{fgmgvEV@#*Kq2X0Z4t3Y5q0hY-fjYoXk$l0aP-FEN_)^=!2|8WQ5EBOZ5$>R3lyC^G7`?8-buZTe$)Av zRPuB2M>RFBww9KAOt5|+lnU0X1x*eswPb=bFUpA$u2qDaRq$+T&q$I5JOqW%lP&(e zRD~qzGt}Wr=4D+^#|~ zgP?=m56e!l2Ilo3J=RON1>x}q`z~)&+*Z2DKCw^+@NPeg*k#nn9{5j<9vUTL5PKY0 z%G4w7M|f(d;!6$~oPCT9PWPW|Z3q1qZb@Z3D-#en9WKj>hS~gS_&^3HT)p|da^rFC zq}Sl@kAUm3pN3XXDV-;ZfM3MOka{rJWR)mqz(7_Xmt`-<8Pv0t9a|V{_;Cc|O{Nl8 zQgo`>Fx|JKqa!+KIiw}k?$s3hg_)F!O6;!Rt)ps?bf9!K@5tBWDE;mb)N@=~ftsy} z3PET>ihf7p{+@!iNIWc_7q9F7-utmjYX=#}?$c0e5k*S258kp8H8jdloVPwZ(cRNi zDX;}|^Z=_uRY!;HJrFV{=q;qw3cxUVwK2^Hq^^Ar*Vo7Cli9+i_px83hHn!cZ*93w z{rOW8g^6O*#U;f4spSm6hL-Wq#qs&_&F78Vyjtvzw`y;2!}BgPhAGcux*uuRlPKzof#M~fiT1={Vpz(AyEQCn`+>eff` z7w9xSB!xw=xWqUXO3{Uc;X4^H&|D`(tK*4adFaW`ZAOQzscVc!{fCsGBAAtoIeIv(tIw>ouy$b|^NMz2K?iypP=9=rW`L`@Et-?*D zE*ql$#ap-JvMGU47e9?Vx*q!Xy330s+nc+<&Wzy8iWq{=SMrurWELfPtNt|6+0 z;}(NNO;1ur=2VnaBncW2#Z@$uzl|fo&#lS%tJ{Jqc*D#}i9$a3{r+JjOR`u}1VwEs zK{tIqy0^C%csPbjwuw`7^uJVh$HqE}2H=3a_ZJ~SLGRPEvo^#R&|DKjh8*3Sp@^4= zNhE1N7)9C9@sypTuaw{gk0S(oLlAM8o^ZI5*qD&27v%)z#A?*-Z^Rv^O5j7%|1NP{ z$$ro~@`(HXDF}?Lklow(VuK8)w(~zI$HPxH^SYx%%|m7H@{hS4;&W%^NAU3Q6z)_p zWn}yaAC<95hx?2UQiaVmHQ|ILB$lU4LN3J&gva=e^*y0Yw!0(B_!ZYN7?42u5EC~y zp&B%IcXxN6%Fk> zW*q6Lr^x7|^J-FHRh|^XzfuUj{vO3jg_i{Nz$nmUs~-v6aU4n`s~d-TR2>5e`x*g{B15Zix2lJhO<0>6JCDLy`X zFhfi~=~K!VbEm_72}4OVvK<4z`HLMBevr4!YVIU4D8l$U3STp?B0a8Zq}<^@kq)hc?AN zNTR;LjU3{s;7l9G~aJO3`o_3}3p5Y&rP6SHupAgEo^(lX^><*@8yCVoFJ zc`1-nDn+4pJ)}bFm&#?@Z%Cs?t6xE>Mk`KbT!bi6?Ds4+7Jh<#-KzBN`h#xJsYv2? z=~e9}ytAiT<$;Q)5xE@NO6)v9UZ2vxi5V@G72}9!5u5>n0LcS!6S<=xedP_L9Prbr z-@n`VGgezPCRU_;BoAZcaXjx-!Ni`iY&7u4M6ASxk=Va{y-R%@NhBNgSajoRYDWL#F^iE4anjHjeuoytl@Yo8*f$nt zep#Yd&WsdeU7m1bz5s<83H1-Fw&pxNA-#<-8-fX_t;nA-ByvCaRez)6|La}LTyWVD9*x;me3j#=RV z3`S#prA!@Eo<}4uQ5(lEr*=>a2kL*j1CQ&56u-XxSX?|su>J>T*+?476~P1 zNkK_$+<4mq5#b~bV*RfN$vStmp7nJEl=4r4(`x58n!i@yd8lPF9yPy^1_oRws+r>1SCLVO6H<@Ns8W< zw+?Mn1A9uzg8SsoJ_G!JH4?Q#ZI!d{0WExsqIDmnc6^J_+^tA6`Nh<}%6spCqB`T$ z3U(PODR?keodLJdp06RdfZB^9CR)DukDPrrOoFdT1UoFfhoxt~Cne3|3$rpa|548f zNq*FbMC3l(>w82`s!-}B&RbU0a|#gW&;_P3T9Y#~?i$0?YpV`)0s=Q43NP6GgKa|w zvdMabZi~edv=S2LS_2)_yW?6oy`dWQ`0!vopz^)`Pi{$LN@&c)JQa^y$J>8>MmH^! zVzh^&oe>`vsGa>aSu3GdWx1OK|6z!7I%3YgEY<|K6?ao6S%4rGX}HEUcy5cO-!8WL zPa#jvO6KKfq|mA^?z0Z$`o0%DXX|h20z2MhJor$WSXXjRb+}{|kYFU6{nmOqY*_vf zJU|r^997jz-@DHWMGwV~1sYMHOH;)c?Je+*t?r@8@Ep(uVCP+xj}I^d$f3sYO`RG0 z9+kxvwF-+;ss391;bxkbkB?mxShsim-|nQPq&B30vJ{e*X2k~4;MW09qezw577`6-qd+0F zjRUf@w6vwmcs!Y|M@N&zAvJcNfrG`bl3AilU2lhpeT<|zRIjIboPzIPce1=>3$YGW4om!uX^VM%7Yldc@`-mG*xpmPmC7wB zum<~l(_AoE-NeMZ1hYtbh1*P$)N5-r550JnPsNX4za-IYNGoG~0pe!j&#l;t`l8~d zwWz_sfrp1@ytt%i#oq9&Vi(6X?~PhZDYRA{^1 zW9xs-#OX#X!B%P;7=Y%DH)e)!j-qQfzXaJ%2S+O=R$kpZSlApC3tu?&?~4(%NRO9A ztGBI}a@@WzhU~|xu{EiYRbadledCAK5YAGuZqeVtW@^PWWDy=Axa?{>a zLl$4}v}PH}85xm&2T}tR^kP?6R}G~4f0B3Y_`{X->D#lW4s9;R5(Rpll&8KT>;9BG zGix|critHeX%Q|FYq?tTLM{r!QPIt71XIoD8Qj6vM*i*k7F+M+X-UQ2+=P?-%3Ee2 zMqLjjv)j3HPv&wvK5}4Me;x5Ys1YmvgB5v!#IK83Shv!8{AqZ2_`H#k5nXwdIJG@L zDH)lhL~%ND+_Oov32$tLPobdCI((w@UB zoVv`Hy|E-~tFD8kD8{9%w=Y_Z?w)q;#>JwGNA)d-{+k%GrG^nF^JB{m zh>>mx98)vpkf_IT-I~TGj(St)Du9Lo0s=C9K%$5pwJAkhTpU?cE|%0ElehjhdrES0 zH%%{0&oO9=)bDO?Z+U^1gvj3RZc`GctgLRG7h_Z5 zLFI0NX_yE$0b6FtiC}EoPQ9|~56A;OEI)}QzDZOJ8Km`2?)**)nu_Dr^Y?emS=Q87 zEsdrKKs4L6&QChC#d)5p$mL(rhf%-%Vkn)b?ZnqNg?y8b28s@Oc6fN$TA-AsjjNWA zK5|o8S=l4eatZ_=TwGMaRxg=&x-ZPMKk=t@^#@JOYpCoy@{O6f*jT7^ta)#SYivU_ z^@ppV#-w`*_+fAfZ}i3=ywuFG(ms?Ap1y3SkqNfrkN? z6fs}Fo#StJ@LLVP%9X*6g_0WVjti znspJ3@Y&=7?RrYLS$b!OIWR@&mETiCXE3drfrsV^)MV&IUNFY9XSbHGUw4E}U4F8( z#DG}tZ5BI%Ccg;?nt$;pzuqy)A~@YS0Sr{~AhR&z;qN*?b5Koi)F%kD2#b@99r2?e zG5%oX=})qYR!$(df!yiv6mxn7B6z13JNmHzR9^-XwGD@t$Za7suRJau`)X)QgmIB* zuhg2w)MrTeq0^IW8zJcH>*sKc1Cys(;~r1KlInx+V4|c!{anN3HE8yn zi1PZce60;wc)InFPlTdwr}`5>mG`g;)V7xc2X;>kPtMNnFzG-499s_XE<^0oMs_?; z$<596D>@{Wv9ks7BA$)xDJ?nqmaMmq3Fw083TG;$EmAA92Q=EkrhuMCpEZDrle}i> zHsEhU%;Y;?7t4#|$qXi?-|LPu)E}?69Dn&%Z<)L2YX7s$V!j5)cd}3<$FfM*^CK0@ zWxCf<+=r3Tux=Zke!fB)V`?otx@X9QRyD->QS9929#DRIHR*P)SS_r5vlvA@PCQW_ zV>*d-EQd_k3q0v1%yMQ%aJ4EmSkla{&#u8a1t2RjJ0hEiFm~^p#=~O zt<>db8dKAO%>9N|LyUf3weWiwczAhlU!!JJ>cD6MEW9S=Gatyv2ZdCw z%m1cjzS#~u2hJR-nwpGdna03mV~STl`cyOoG8pxY&aD3`a*i{;D$AcahFBqvhL8Bh zQ+7PAoNfFy>a8n_ZsT89k802!vp;|Sd;#nA+4~DI`d}UNq0}3E+LP={W^V3tJat0{ zhm*C;%*+?PJ-2{b;zdLBy<{2u<1%nTq$m6V^c`3nWEH-h8)si)3;gP119oEraG966 zzlx3T@ET#n^PAywu>3GuL^B&se<)~;&xrgsVD^(p!Z}jeH+6PC_xEnSMV`Dozo2bT5%YVD-P^*7 zXBMy|4H@xb;c_syP(&QnZ=8gr5%pu3Peg0M0&T4Dk?s~_WetD2?&uPdna%>JQYxbz3Z#0;ZRZ9O8KmYZ)f zgs-s0))0wfc_F2Y$sBI1?SialZ#2UV_;{`Dizwrw4yvp1qPaBTGg z06(UJo;{hfb&iax-|&Ys~5G7tl&z1M#3?f}Sg zRHs*0#}2osOxlwZ6NwldU=pdWO#K^RSZ~q*ZSkRd27c!bPMiOlbX1)d$US+99hZV|83Uk4aOYssau9GKgxns6}%?_@&cTu*Va)T(Io#>@dpw)cLCg z+Hxyx+lb`{`vI=d6FFJgOtECX;jDxJ+1S>m#u!lC>!k@(sq+Kgqz_j1Y(q^jmk0N@duC>4{Z|>ai~fWtr^h!s z28Ie0iTx9p(dWX{RPuDU^f_ri*lpVE3&Hcn&CiN?oNLry?j8h&KJqNp8X%W8pbRf3 z8AYW@36w|YgdozHy{HQH2mZZ|818@~o@ijf$jGP(R26;NZpG;6Hnx$md6}S5@BR5h zfF_z~1R~#C2BtCx2M1i^HAl5Wbv?cG;N_nZaL1?~fCAlYZEr6VfbE84u-)(gwkMQ`P#j%9d3kv$^W#_z!u7`q1#&{8Z+PAt*dNS?8tbJBx>&tz^?D{z zqiv3sZdjD?vqRzTcdgFgdRE&rPBJ>s+a{TMe=}23U?YA5`~!a*jNDY&ygD7yx`ix! zg@Kka{tneRw#iNrNJ0Ly?r}pH^aLRqy@>agNrDGEk*YDQR1D^WS7k+ zTPZ0iZ@`BnYy5%NCKC0-v%@G;%$Fae@eH6b8M;qDjDDb>3d$;3adH0$2*8Uyec!zK zEor5SbnEV9W5c4D?$Nz3wfF?0m~+Z)hQpBT&}~0n<{u1v0pn8HH=@)szTe{Gs|k8S z)^s0@)BLe>?VzxHngiFd=^qLV7RJ2GW`12Z!WA=EuQ~JcS6+RUd$A`&1pTYCHJtGj zfBOW+BFk2mma4EFrGXu)@R%4;Cf1k4$C-o&KG@_3z zKGYiBdh2L!Zy$Zq0y;p;AAP_ITSG{8WxO#)vil*1O6+m>_V%{IDg)BZvpHS+H6SE6 zYD2-)W^};Uz709)9u0k4N>>OYxdFMTT8_`W!jq3kcpsEP%M#}#t<)Y>J;Q7k}+`!;J17q+550Owr)Xvx{`j)wYy zPeGd!iBmhfJ^=E7M3-COS6g3yn~l4el$dy~lUJwKJ2cda3E2z%_3M||P%_W{FsOrz zs1<*DcZtK(^R`&QDkliIbDyk!$Uz@!UvYAtRK>=|zMXJ#1Igoku^zP0X5uP$uX9R8 zPfrv(*Iwj^M%H2A@87>f4ryB54`Aw~0iz8tll4^^B&n&Ip)R4%fF<)0*dP0$7`DTn8%TBJ8a6;8WLQ<{nT&vzaIAyM)Z?xj}L{@TWXJVOY*qZxA<1rbtgs)M0_AYjLMHTHZ@3P7kvooozSaf(MykCu-W zs#UE^PwpcS$CNAQ4Q26;GNz9oc=n-OR{({=iSun`ml$c98W1)^M!aP-^{}wmVV4-d zu@^G?nGSSTH=_h!6LoKb%HfMK@6yXddefHg2L}fgBorGG{*O3gCqFiQS65eW0RDe| zcKfSQgqnIqK~YgLUb}r3q~Om_o$+A61zDYa52zQi)2U6I(po^{0(oyH%2z9MyXk!8 zHTgjU`NbyaoxEp8M(ioKlS^=K6C~~lSA?5Y^_%Ow403&SuZF-m@hFUhSR#dQb>!#g z4*`5?-Kq^77g*sjfBm@0UeT#_JbbplqR*aeBAKa%{)iLfia7Gem4B*BPWlI{sK1Mm zC46ZjA7`ARgHv&z_kp3N*p45msM(=&VGw7(AW7HBySp| z8`;(l8k2_M6ux7gi}`<20f;nhnncncF)%RpB^HWv7jvVo0x|yBQZr@1ECPAK(%k)z ziU%+Z(JgM>-rib_CMZZjC;&U9if{DqI6!ephCc3nK1kUCS(^lg z^7SMpTg2g`Y9E6(LyrGQ{QWGuAilC!b&NzQ347T)t9E|qLv1)XRUW;YMQrdb!2Dvy z8ecqr4CFXrT3XsKg%5#2K_%juIP0XIFU1PvYS?S?l^#7er@CB}o?&6#YocUr(oei8 zqh#=2n(9WDNyz<=+Tg=*QBQ}BYnEFEqNTA4F=Nxm@Yxv}lOt-AqU70z0S#>vXT(z% zhTiEHK3_NS0XUFPz|WwRs`*)BwZuvci>0ky!S_oo+@OUPT;i&KlECW?@WZiu7 zI_&}po~^jF)EnAUfk4uSB2e=A^XEAfwda9yYS~JF9o}G zU7sT=@$dNdg6NZ$AoB4WjQl?yTZj7SJAC+lXcA?Tq}j=M7haSvd=G&me%JT)fZNqa z!3{zOT4ky>HaAUQ|ME?ms|3ZQD%pp@LumJZ|Dd~y-F9ypdp9=C$`!XUGqr9niRJKI zr`F4eaZfjZ0AW(ITs%Ak(Vx%sjm9I9PT09>ENP+mKuZrD)WX7gRjjrVDpfTnH% zoNwFF(NU_kmhmP<1_jG&zf(}9Tb?citrPB+FfWRCf2#)rM35G2B^KWd4i3sE_Tk@^ z{c<74eD+Mx{P32a2@@B0Ip9p`casrTeh;zDa%3ObLx)AR?fKc+{2N=!J)Ym+O|Sq55M5kpR4Vd1yHovyu-SP>1EvZd|k&j+rce7o%yk25_BE30H+4=<1Q$n^FG za(b}`e1)HU!JbVLfOfx-b{YW`O86@r?%r5oZIWCFoSeOhxQyx~a$GrRY1b{iFN0md zawA-d4;}hTsxCTWI0+%Gu(;UB^VMLc%hPXAbD`EIr{u#zr$-d)kwbGdJaBrNPS`kJ z1u+XvsIT|9`>>X~uC9NBe{}dwkh(cYVbep(?2n-HQA_K_$Gn+sz`o`i+sE6|TR+e< zFaJ8YQvabMJWTF)a&i*FMUDx{K-jRd12aR~P`I(e&vSlsZ6&{+z)C3qOq45xCJP+R zvJ+Sals4Aq=XVnm=5W1y8B&x`EDmo4bZpPO01gUNL(k%xn({PwCu|PV!8M)8z?Nd*V!X&qW00JdWx(sp3kpQ7^6Cwjt<6o=cC0IF ztNNIL6$13*MJ_B%$j|l}Lu!7RL|S1FOp3n}Q5MO<*87@*t3lkRSrvooF%Q)InEwzn zR%$+B;g-s>vO}zTht=pl8LT@tNimV&$HpRH?)@TMrMP_Yb64;urFZWprog0P5MYeo zufs<-cK7$^|7>7%)YXDZL%98FPf|TEt2M}Z?s#VhUWOmeaZg1+MwVhqZLQF3!sVAP z=C@?>xbaFMnU}!Z+xv1TL+r_1@?^EcrD2>%UY~fy_Rv#iPR53KcrhEFOaryYUDOY? z+=(Qk$sv!k`Lv(8(}gu@*qvwvY9bMaLvhO)tj%bae9WR%y}oO zyVZ0m4ccjA89E6U)4Q;y@pzNh|JYmYsAzn}WJ9P#$xq7On%V7%agZ1&|FQS#R(C)= zf+)`RavIpAZYMZT{kGvV-yO^QqPk+lD?FN1uKq=@^#e9Eim}yxwd2@0*5X?MBlKLT zC_)&}??$;jRIla_rZb*Z|3Z`cod2uIimZ2%J~rtoujT;&3}gSQC}tNm8=Hf1P-cgT z!^_7N(_bm7ztPqvRZO3}yF6^}k&WM>MRmO7CZgu>nYcOIPMG+_4O?rNwo&W=rP}wL zr4A5aPg^eq9M-zBL8Epokq+6J?raRhRRCJnG>GpchLDIg)yJf~;n3*{J>z*CPpN=pj}H*B^_GD^?<3=Pu&2sRcXOo6H9~l)`yy$*St#Qd94p!NJ)5FI9!h z2_YfpPLLCE9}^4L(Jaaplg(=7vtohna}N5nCy9RI&d^pY)feBy5X~B3!>IzDo9A}$ zrq;yxct?IQF+ZHid#eux!>@!?1k>_31h0XXo3D_zQY}&dbC86##5d9I;8KPyO|ZcK z>Jc}H9O&#Ku=*j#&FZMDkN>G^%g#2!p_gw~8A5?T4!Vv-Fj2+V2m_s6hSEh+k`Nq$ zo`b?}ygL(?LFD?`$$S`fRCHNc*_p>cu3W;S2pIDjQ(G*8R#A()Gf-A(^QQ2y^9GOh z#S7OnH?O0l;Qy)*uWJM>0G-HMG+=WecbT=CKH~o=&SB zAr)T}6X^`p8YTKjl7%H=)6rDtT!25@`^NMc&_F%3zy1S5oc1&a?+80zbz<=+-nM7B zRAt*fL=J0kXvjAPGv)k@#}Mz9BV7N);!A@#)JaIt)0>nYo4mNGm)PCdCyStyje^K% z3qjXy(Z#tI1e)jnEs#OImw@Y#vbx3CtShi0)Ggcmr#)XV!9pBZVfT1{vmCZkl0b-$ z-c1i4=ciXgo+TFBH~22V*lyo$Yzx!a)Qk;}t;9Z3|gdRrTREWO901SwsYBdcrK~{yoVRd#XbSLPpshM^_TMB?sLn_ zV=({YO$El>3@oVhfo=Q4Zi%9fm%18GPBrY|3kk0p75Xjv7*#($-8A^3eJ6G*iG$o#BMzapakmG|tWiG%!J>2EG7JEF zFX0#Ef&kX=vC05pO#>J&o-13j1{mn}g$@H;$5-`1dE7)=x?9_;b_+n4n4m?Z;ugFF z%lDt)ytdk+;ot9oT}ZBw(^Mj+QMwKgy8I%)dwhl)j-C8rj^@Id<*O{k+Ykd7=~k2tEbH zHW|`)DKS2p_^f~#-!2GBoOwD(G+qIuRe+v&4KP;G;$2Qxj+8;|dYf71F>R#w>(>ej z3U+`9A(C^KK*e$J#?*Av6!iOd_YV)Y-OsvAj#wz}0Mp2e{7&K&elIKr>K5`-Gv)X1 zzlw#&TfSthmoenx7vkl;q)lW6^sS=)QVca7{B7)xOXMI2wSr^v@RcCYSd)DAlaiKx zbOyCFRda7nW@!HCz$iUOX;|k60c;~0go-jBau>|jKNCCYWP^9Ea?!KVd`rFJh1?&N z@J_5Ks7+LXyR>gWNj&HdpAtc>QIMZczYL^?iQa$48;F&c=syaB+Wr4}FaSod1`x|$ zwl+-G#dMsksJRCj7Z1RW(`4j#&EnU3a1a;R9@~HlGY<$O|B7-E5oJ~|eN&~UKufCT z_OR3c;mp)&G;_Eebf$EDz5eAmuOxJikd*ZH+0be+Ap-kiivUY|YnTMGOot{9PBY4K zyCmagj)UWOTCOk6Bm)e z`l-aPzrBsbfUJ`N$2Cll2PnC7wX!W8jn&k~A|7J^n=Nuw{Z$B4>vIy4n;MU^tt9fh ztHb%LA^-_j)M!&tWjw&KL;=^=h4QqI0{{0hiQId4_v=5Hge>koOZ%azcZBq*(?w4~ zfq{=$j#oXLe`W89p9Yp3h63nSk}rp1*2^6fUcI+HF*7rBCn(1k{#1zptjH~rkd;f|a=hXK^fVf#W@dI>CRLq`72@RzhMe9$K5hWT zT0`;5xeuD~sRC=JPGFMTVFF!g`9R!&>D9e+B+6FXymQqr|ii1A@KF=Jp3<4qN74TuCN#uc(o4wP}Xa+nk ziippj1+n9=;!In(Z-u~4HD#F zovGJ!^z?SAK-8}t5JdZ+M(j*f&`+O^7nsW%*Wv=M9nc|xCqW>Rz=7iY#b*Ijql+3) zA^OcMS7B*Yfi1&sF7*=HqCQVI0E@EE_j7PS$@%S9`u|ml#SvTJFkS^FiiqHtkoF-C z{?_Y!pCv-d4_cyAlNRE3O>-s10lU^4v+kG1Rxcxzr*Or4^T~m&p9hpfKN$)p2g`d0 z2j?@OWmQ*b>+pfgURVENyA!Rm7&H1eyngrLLnx)NyM0ccr6Uk-f7mLq{q*T-4!}@B zpm@Zb1y%j#K07B)3$yNW_4wV8tP zB-_spNcq%4*ccC6#H_jK8A)+xlaWm7{hfrdan3RDMfB}>xeN8D0*(ih!%lZVn7?%t zEY&gjG#r8MTLx@X(1n+ZQ|}Og%N_voo!+M?0YcC?Xh5@kjblcu{6Mw6Yz?-8^XdbH zM^Bzeyj^j&Ji+1FCL|yzL+;}Uxji{OebogySG^sH>Fntws3oUmz$QYh33wJ;W48NW z23AwDz*JHvJ+czX6J~ByiRw3WrhO`fs%lVTP{k)2@_OP09{V-=0LuktEb#XPjVYI%FT5T8G-`=BP{ zf#rde&;qY-nN3`F3DM9aG9^W)bM1HJapdRE#iA~I?-qc$y8b))<%j$G>T;mLx;$zKO57%AGf*?_bHvp)jgC{f6r!gY_u25{yRQ6%6g>okPRW|W9pI16cdja1uwF!{p5+q(tw`zS@KZuik(BGm(XrBPHdv$i&q`|Z9q%3@jX zNB;I5^7`!^EYcdFHOTWCmckyAI2!;CpW+g7N7BNiWk z_-{O=q`E2uTKBmuNlnJaL9SbUph$^}s}f>jvP7=C$^Y-EBSa2VT>EforNhqS!cS!Z ziD?-?tgz;FKWfy6T8g^JbKL!}z?(f1vS8wUL`2u73xx`ke~sR=iX8Sia?)M=#c#^C zy`vAJK1rbQuM+73g`_d#l8Vw&tlfhHa+S(o>pfqV7nYVpQ*bIHiP(KfHx7jN`-X@8 z#P8_pmDz%~k9!QB+XRTOKzauT?yr`9dg*|z%A>4>EaiRh1=8h|mGuGDK;LYC259M0 zfpFsayxN8$Jc;V^spy~ZL?P$p8qg7;`d#q$ryC;ISsnl#j=q1OdJgFD^feKY$SO#z z7|9~Pd^et@jivHt1+E@T6uHP5UEU1)Ey*~I#u9_dR7*=&*ZbJO>_1Sg@{#O$Wai`; zcZ=_fGwl9@U|@hg>hj#Aa9aYMU)>DC$JgKqt>2cN$<08AAju#)nne~AnEwGY9jZ*r z>gHylb8usZ4LW`-jd5E>fI#ZqTSx`27@Hm76nZs9XZe8|@)Y=`J3TK7|NQxO6Qs)q zd23vfMPk0(0WFrShr0e_o{uaa_2# zU*0NeY~vQ6hzMKJM4`6Kp>*sGgYoIjeJfDyukc^UE1ES0{*X1)Hg#iS5Tt+{M727! z4I4=biFR7zzYJqVPr&|GS)5)(0B8y3)W;~w$}$>qa)J-V0HkN_udt#*{A=Z zm*usme*@@Eq)!XBuwI%Vkc%57&Eje!H1%%!n<=etkal6QciRl2IO!Yl@;`y0mKYrq zCN{Ru`e){H;<5e+vQI51OC+S z5?liybZ~U{1vfXh0vj9KWBKj!@bD)F$gEhd7$_Cuq(NmF@csL=B&ed7W)>F}_30~s z3KErztLx(xNCXXYg23jetO2xsSB>rvRMgfs;Q6JI_nsmK6N_9v9`&{2S$+kI2MmvU z6pkI8n&zSnJ|&_57p?NCAK>a00a?B;obivK^I!V8S6t#NGkKS%Cg{a2wIom1ns_s@G!{-s;#6zUx z>IGP4QpGzb9k&n&#HQ(T&RRcz#Qpf^RqHOuy`soq=|wq+m z{ohU=Fb$Y4c>s%===;$+^fK2uj%mjWHK8O)8Z5^GT0PMTZ0aF_fRF9^YuU=V|w0<71eYHG3UPGLF zATfF?L?hqqK8p4-YWSJ4Zba|^G1m_sr_>s!hpNUn@oMHcV4YO`7xZ7ka%#K)w>+>e zZ`#s|uLgmo9K4+3C0t#X$@fpR|Dr#-Co=vVPVW!{xIwOkwz?ik85wO7|Bo1_K$u>H zK6gMsLW3mgQy$}FveXk54o4!YWC!HSD^8snGi(jdt{-np0^CE6fO&%hs{HxMNng|L zUP;C;^JyR$UgT+>xKBALSR)-e8XqBTQ9#CLulMxbr zU}xPthm=X=jpAXE31E@}vBIP}Q?^weO?7pcB{(}|joIkI%zhXD>*}iGqWIn}(hWEQQ`!q+vj=9WpdG=|Xa}q?4}f9x(!%Vl5Zb`r8BpW-g?5*@ zwl-m2R#wMcnLiu`Gi9sztD37N@V@E+AbSfu0s;tWaitHyjr+*P%1Wj-hB*XO^M+B0 zdNr;X#QjEow*$D&tpF~>j$j7|hY(=ZUmX3!N%wWXIvNKF|Ec(uh=JX1LuWexc2%XP zDgkOX-Zz&0w|}K-+@@_DRSblV=3=5_vQDq5X*Dtnv%6lkdO89Hrat<3d#hjm`BP>H z)D}koWNh@COaM6b?P3spzXxm<=7xrc)5kiP0i8f-Xd-`b?=#U;FOh$fHS4WO+k$Hg zvjGC8kAV3WyqIYh04tvYMlaRnH8qz@KxINP34fv4KePf4}d1@ZDa%MH=w3_f+miiRJ2DIY^qe@p{PGqn4m-{U#AKyuHy zpb1PV8Tw#_d;^8}B zWGt*s-X`-C)(;PQ{Cz!ug+bxKM~o`#l|6eAp1ZT~xK z061&X=C`7?aj>RGLHw9}QXf${Q{ zd=WtPqB9!pzZV4@TPN|!G*Wy0V;(=@f=>@~61F(~W8?Gx2GGIsxjTAe&4I^o5~Dq8 zN(el~f$3j+mNXxNFW}Dhkbn-ksCZjMu|TGg&5QIf?cDT#t%mSLd9jzUZ)WzDub9Ub z52-T{vB-J#n`Zv6*HGyO`?-Xq#3uZb!by62dHT^n5{O^ge@9IT1+~)lN}O7s(Q;cW zwiXo^s;4+`{_D5*n@qoc5xMiQG40#rNoITOncVNPpSj?s|C@^7w?nOk^~P+rTeM(V z2YP$#GYK1PHYq=Xe{(<>hl~*Ns;o24NoRf@4mc=6x|FZR6`3)y_=}t3R&CBx7wTYO6z@b{I7Qk zy6t9q3p@mp?o%v2YD&~?d2W54WG=IR_cpJTPD(Tm24Lp{ z&z67VcCp%L=IceVpHx;{&S_=8Z1&(9<6(#8*76uR$oXNA$HS%j2C~mZ^u zq&se^0UwkG*Uj{)-*}FA*U32rG$SN-*YQn{!=;&xEi#ltC*N{+G2Zt{| zQ1k)%K#jx6WzXZiI{+QE&g0ydJOUTu1kEc4~&d+ zv)a3_J@3Yiz&%=Q*vgEEi12;@9IkWUul1urx=-J4Jze**y{+T<)iMH<)a`cm`_XDn zyw>+nQ~$KlW5Yq}b}`R{2>0TNPmVax?UMwKeNf?he3Z6#7f%8%g}Ql|4FN%=N@pG* zpHg0LlMokw_UHLsHXN|JX9sP*ZbrGB$I{icIBGubYHlHTwrIUvI{zp<<`#$#L^j<^ zaCpt1(kyrXrWF|{!lR~G+0V4`B|5}$0oL|d=bqVfk8FH6e2GHe#3u-(6&WkB*r8qZ z1q>-DVm)4oZ@s)+eoKdVe(R=*TN_W*ot zj#y-xkRAu>UG87fiuC|^SQj_n0wkO+8F*LrU21hgF|jZaR+JbxK2kBZe{vb}8{$Lr zsIDqOboh!Q4~H)gTi3_C5lL>AZSj|Kg@5r5hg-3P%ZNUa`yak5Ka@R(+<-=Fj9tEV zqjTX;IHovwd3rttWc#W*fCN1}{s~(>5JFpMAR+hwuRjzXj5^o#TOwf3U(t0`$X)nN z1!I&YlzT}xFVS#N>f!j~{HTUosyWLrE5dncy(e=}ED0FP#rKSI&0f4hL0F_$&Cv+Q%qUbCc?G>k{^IofiEG{Hm zHt>%0^D=qoJXEr;HBbE~EC`Ca2LOg!<==EoAP^+<)Xz$#n)dn>bMnJ(i^XdlPOJ`o zE}*02V7|5PYp%V>9^!qzO~tFwZ;ZQMDIK+#-z#qDa3=eHFH|t4WQyjij2T}2oS+m1lDl2N#TQaW9hRMaH5^-l_xQ_?D`lj;Lg%8}3q{=8 zw%C`K!pYc8IS2{oFzMu)zOHjeQ-JDu)O+e$M}s=+t04I4MJ(z7qN}1W?J~qOg}czh zrT6v0aeB|)rVL@^*EA}=xiJSxn$U*!7c+}RGW^Nv3agTj*Knz^(~y}L)JrKxq$>>O zzBV>C#qF%?5)D$6x8W?QZK>w~_mVBRm~FQ>^WaU&<|)O!`~!JYYJHp5I_XAlav*l?JT(k|L3sc;HB-eQn--9xRo`S6rwA%6WJlbwGZdj_ZXN;9 z;0~eS12Yi-6&+D)kfimK^p}b9^Lr{mSUCgU0KusVkUv+a3I%dFCcGayJt!RA`GN@W z@q;X!*0rmHKkOQa7&#xX_kJQYXaHkR0=PsEg4~aTn>z=JF09sX8&6LOqNeVUn}v=r z9$p)pcT@#`97wq=Ln!u%$gwe?f&A&V?z5Wu`tl1h$DVvodl7PJ-}$sTtI6gD1xpa_ zFq4XlDxMIUgy*Irwt~_OmD#hSG8L6Jfu>|CgQZg1J`Gg!#LokjH;)D^yS~casu5-U zTxo&>6yR55K`DS0fN(A`eBPpo=O~Fd5eV7kpyvEeeW zwpMd>*94N!4)pQX)h*U6V6^h=mHv+Wt+#%}TZn>sgS3Sb z>qPr*_5IUC|CGw2xwJgN=z7g=DOI@yxGSMymMvTaq%Uv&jo4gZN#*l_-_!1ScB&Dt zWXA8}3BOfcs9w7q3GGotQGY<0C{L;M&j~#4@a*=z$*+`!4bf$u>6Si9^+``DF90U5 zBL^zMa(!~sxEgE}3r7*P+sC8@r`#HpK++ykL|<6DCLNMDM}=-&oWs@BK#hR0wl9Ikk~ZAHk}biYu}p;Se1>HFkF8Uiyj%a4VPaA_U5_lr&nni5>sCdM6X%&tPAT zJ48`F9Sc%SE{*xhPm;JzfhG+GgOjTz0xU#Ji`G{hD46R-0V(l>RhNU}n9LZxcZ1CK z-43s&!n|d5Y)CYM-&rd4TH$jhK)--eVsN`R%qVUf=R+tR(iJTj)Z9LnIE{{e@QSWU z5{lQb2>W(89wrkUWa`m#fAJAu_v8uuOrhG}pM6+_GSr@TIFl>PEX=8L&Zj@(=5+~q zF~b$yW`Hf%98hiRd>CamGb!*=Vf4(UBjRXG8uog(T{)txz&gN-zyD&(HVlE0EJMWN z@|!`N2@-G@QI)|#qifhr_>_QOaddwnO88yHqovFF>YE?{grA7#|a*tF!ZH=k@Qbo?c%K(H745++%Rlj4U)9%k&CJiBwqT zRA?O={$zuzv<<6F0+8H_-fy{1VvwqhH*=%02{j;}ATIGu56 zH8kA_Yfjte_BtORS(-xwJLXY~tzp5*t zv?&G`y>(#hgzBZ*{2>TSk6$``90S~ajG9w|KFd4T8>jIP*WmFk10JbIg0SLS@ypJK zqq`cl6$0k~%fis3Q1dpMS6?)&fx7mP>Bms`{D`#Z8y-=tARrwCw?a;_lNIIT(3|~; zb$dKaC#AUt@O~m^{}d}Pu!9m5FzLeh5d%2!#1nS;kR2zN8Az|_(_J+tA)If$==ECwY4x~befoYl1 zt~a0lgpR|s&9kJ3t~)%P$3k*HZ+%AOA<)S7Nv0#D2b`N~DxKHg`Xxe4Uc4sq-Ey{K z9#ek76yk;Bz9>&sO%0trA?9e+EoYM%UC`AUl-?@?`bWLIeJGG9)*2T9e!l%%f+5SM z*>ATNchQM<|n5tZStR8{MwJ7Lz!kmc29R+yr<1chZltVwet9SEX3$ zu#CG6+b|WJ(r1;WO>^)X-dn#9tF2lPQ4xquVF)~8C6}3j*JtPsB2r+V6#te1D~~yP zLeP>FuB@z%;Lt!C!zz&6zc2Z~k&KKa1M(Y|zH-vTMS!{$F{=~ZA{6?V13{;wbkpyV z0YKY>K9dY5`Emt9r<0g9k@()zGaG@EQ9nUOj};Xd?q}wlRAb&Hmag!Iue%{Im*@qvXX$KHkfMud;<7hk)tr$a%~IY2gaoB%x1O7gr{=KzE?1 zMe(949XK!f*T_^HvGS5a6*FQ+Qv!I%4O+pFHPOW z9M|YAA7M2l5)MJRZr`i#qmIk?;okb|SHob*Ai%$C6c@yKS%-uzfAJ}cB(;C8FqV5CindgIndM8oWi6Q5; z>UMpdhGGbU$%<|oa&~VSN6U!f2_?#7I;v!#(Dg2ixlyj11fAZMqruB@4^nt9(_7{y zvm&DjJy03Pxi_@L{owzxgmKb%kU}~t|8okfF=4$*k^mR`gh%Z*V_Wfc91_E69(aOZ zYpDkB;AnXG<&0~}opi&%w$h3@51yCAmAfiGIvzbT?pYoEn+XyzP^a{-_(7VJNSV{v zYmL(N<6-g3!;T}#vTsCDWKB>%B&>@~anhUhJLXQfA0Tf**M zkvu@5P^pjzB-u30dIrxk-uq}>sM!rE!>9*9>lSwO&KFX-=D%KtD^EXVo7bV@e{se@EVR2no){hE@-xP~zEn3j*_}3-Jel^kyb*yf2p3eGB8Mi7 z%`wB;^SYT8KIlmX7CFPTAruw}2;RB0XPU5L?S~INUsz2}7Ow)8(+if+?RzJrwCZt3 ziay13KE*gQm_`*v9Sh`h?$waDc}b^M9(w%da9NbF)h#4E+g0!}xbf!QveF7K;oC$W zQ=CkW@lf1feGu1==RY!}EO3GS@qM?)SA)sOJBi0Na#8KQ5PdVi&~uu({q+0FEvF-MfAB|R=pjpi^LFblixR*nM(hLe*3No zP69$=ke6sH#85erJ#5XUXQ*`a|KQcqGapJKTZh?}|0GlHS_P><;{&SMFypb~&(03C-iIFlYf#u;mgLsf`a)Wq1c9pwMRXij9J*I)Y zRDTU?dgkt8rF~DvO6u6FUu)PAnR)ua^4VG57yx8tP#)4)PNdbfpQNZP zX_b=5F82h_QY9SAUI&;H=A9GM+>xvfN6?3v)pT7TK#$;_JpG%+6Ft$6v*OpOsi29G ziSid2pyxaH+1XaccG961SaiJ`s;B6Iu8Ci;Io}g9P=3b#J_MMZ+$;k6)nUp~JB}`mubM2< zZXWTm$aJ5rit!%s3xA5C3c%Ue2RynCrRa7^!f=8lj8IXQ^89{(erN+|jt{dyGWg@M zp)+%SSANZE(ML&t>&#Gwv|0fI;H4Pyt0G9^UsCBc#XgnHxsz)=_c}Q@bQC_j1d?ic z6b1^7=_j*B^e+tKREWZ|O&{8OzMbePNQEdG!%?OT^yfmW9Wr3|j7Lbrq!$iOyC8j( zQ_&Dk%l@!Z%GgYYJn#j@5c?4AE|$I4OkXTdx8WcoQEZ}nOULoa7*EemwG!vWC$AvW zuAN)apJ&JEuc7CSQkNLHi41nAn2hQ%5K;ux^Gb0kw73byXcya!ywSvE&DQ~TxQsUd z*H|@1XR?pTien6IUT4d}Z+vEyNvbtv$*SQ05kqcefm(U_=O0J_saaU63^mFM!2`w) zidAqL60*cQ{FM|8D~kS=rsm%yU^Sp%TsR>XZWuW#wvYt--Y^}clN+goH3mynuQyC9 z82LLRTmd_LHNcZ2v5q=7#WqQEk^K_TXu%7*2Ce}OO`Lrh0qOys${+1?KDsoDME;N` z1g(;%Vlot=uwB>{!{%4M-+}#-ViQ|GVz)wO#$5WJm~_9xDRxa|*Tg(y?4#axcr&ia zg0Fz|jaksX=*plJsUhbGWw;?hCLnQxcLa@tdxMW2&b#M?SGT{!i#GZQbBS8v9qvDu zF+creU@n@Lo`7~xxb@_DgsCQ@$#bfFp$+R^;xe^AMkMRoC_9Qsj4^_w-FfGCq7F|3 z_Uj0Mg2B=Dr#p$eP)BnOW*t#9f(S3Of zCqUzvI>lF+;%{@aE{Izv8+=<-NZPIT&|qnO__H52mxkuQ936GdwT%1zB*Ne|1K|_q z!yw@(=J3ZQ^@#!SnDK}u@5YCk>nGiyp3Qe+Fcga$zoV>xx{LM)P+N5peus#iAe9mJ)U5Kzj?BDsI&wXQs=VAF`3gN0BoMmx zlht=>{~6k*{A%nrg0Fz524rq&)LRT5N@Yzy)Ex*lf#3Cm*?qct)8Zai185 z>2>fopOQ5(3`6@YTk))PKKlyueI4`8l2hM(@8_X}g_)njAZiJ9jlI5#F^Pd9pJ}Ml#xQMs7LEk6Yj@nK<9ZbUd6m zu#L{>-Pcng67DNM>pV12k9hqtrqy}yT$t0h zDP_xLQ(zxsic4xQ8?(A`VOegV9!1pcO#huCiug+9kUE+$1(l@I7^3Q~F#0I0C2?)) zN#cPoWE@+qwqH^wQ1$t9qX%5MF_)7G#dP0$M4z~6d1)jxE$n)!D-v&xp5CTb9(Hl^ITU!F2pHBjP2g%4brVcEGyyLE*OR8r<*oj0vX zor(@j0`tfxu;GZ|>|C-!ni8Nv*i?j7po2#&W-!hXA5YSltnKZIxzVbelu||i=Ty)W zr#j=>nTTHJjj9^abd-wB%Td4e8MT*;%bb+pfpP_Dp{YY!pRU|?3nrQ8FTOUrC%hiU z3ej-0QUEo-Ug-XXPBooO-+ub*Dx&o@w>UXD2lII*bJN#zmd`W}Ym?aXspqfA?B1Y7 zk&!E_{aT2}MXtWp(GoXd@$>*5uK^e@YqS%lRRjI&)8}=FYP4We)x?T-_@K5=LEH^; zju`G_Mu*P|7TKlWDN11Jdtb`^H*jA+uQb_dn7jBOM{7C?4Y znDq;uFPnNw-ncTE);u3=VNa-ucJU@vDNJ*Jow(v&_=9;3%HB`Iv`H(>8@}sM!-{Bs zhG->r>aZf`bcKmrBD<7>CKsmYEgS5JbrNpWen7Zg7^Ae3MHncNE2xbLOE! zL)A5MikM^7-!dzZDOiEmkNK89Jr@`5^G`x$R6sAEg({8QIk#efKmBHce_>+YLqo&_ z>6w*G8gWgubnJ@Xq;Qu>s-^Je+&~MT7T2&2hn=nOSKO4d6LEaY<$_dpRV3YH;Q1_$ z(f`zVyI;X+|MO!KfBVZb*BimV!^iqjfp6`(9bpKIuZ=R~`+;B;pPjS-gGj71>?DDf zRPeegY-@ZvSA|hf#UeA8`U+=KKV3n-r0A+_OQXWPSju`7Rkg6_QYd_AIQ;gE@q8*a zF^MbQh$U2zhn#sd2a^M#ZQH}FoW^X=-)hH_+O&f{nVX~BvHezGXKBp+%Qu}CF9}@& zAB6`5NOuTLk+bn7)63YilnVN3#Zlb9zwsO&%6V#Ue!wzZcVhKkg%pvo?o<$lxEv}< zu@m(cQZ-a(nKzQ>u4@w-LRCkUG2W<>)-gPC)+{E>VH$6 zx;!4me{-{4rXj|*!qr2HZJ2`t)vv`p59t>|$Nt(p(V2>!7@-5FZZY>>oR^o{#+$@| zy03E1W6vAmfNQh#O2z3K6lA0ghY}peNDC;9UthXJ@43{s?Vy*-q(zwWYTNke&&v5l z@nsonbGHW@rNF-o+h`^6mo86$(llg{8z$b6g**LSV$@MfP>)jq+RDD!N}M)!(aJB)qRno<8KW zPCNNd<3ls%uqMD0{!q)H>`{s5tzQ~AgeR+81{Ir=J zptT7vCy1cNn~cte;==~|W*J_f!W<4sw(yc^eZF$R_-rYfep;;=3}kL>V)%AY(4r_; z*olAXwViTOT@1ZSU8lpoQhgWHJ<&g8K){~r%WvhBhRsuSe^rosHC0#BFo(p*_YB*Ci(uAurkdODHvLT zc>S{T^pon;PWRTY9e!&YS;b*psJh!y#1f^c-rM6AC09E_Fkpo~EeSrb?#_2rI_OdH zV%uYkm47Z8FkJO-%@(SPB>OYPH3b4NsC@HaVE;eMgUipZRK3XcrpiP|=@g5<0PHKs zkZJ#?zp5;f#Q@gX$%;5DGbAD5^8*qlDuLuepLEw*h3Zba5{zu}OAt_|n@Y{}Nl&L? z2-c12i$NcXd(#;$DD${VR~y4DK~_v9t>+-DoI5?oym$+Cykgnv_6PC=9ckd|a#ZL2 RMl2HWr=p-KUoC4H@_%4O0GzuQ%eeG)>UTLZ;k`Ub@f*^=Q=^;`Zf^ZQKgd=yA z0Q^si-V;0sVuqBE^15DT>;BggP4%J!hy5o>wBQppQOQBqyWf78E}AfuQ=*{^77vn~ zG1vW4^PaP(CaCA3^R(duJSr+H`gkoIdG`mYcz7`l#z!7E`Y>5MlAG6CGlR{X&YLL^ zNpIboJ*RvaBXcqI@;ddD=~ax3PFAaWhJ;C<-v4K=ncc*9Z@t0C)KJ36 z2!o!hIpadXgra%u$2dW1(Dt-E`ETu#5izfz2|LWKb@2^G{Jj6)biRkPko#s5eV+DYT-~DO3C7^EA)&Wj-7ER zEw>*okhU2}ckJg`wJ4sdaT|t{piK^5&;IwNWfg)LR_|O)>J?~l$;DqOq;b&TN=rPl zqPt1uz*v%Qz1>CXHKuR1UXIrtgF}L*cMZL#_3tE>%?TbTD!%(*=M#?k1O>gnu+DPp zf$h+-FJEihUQ0VFHY2lnp7tQy#g!cIQeV1z7#>FZ-J;|166f82PfqZv@LSfd-Tbsv zYJ=%#CKEr zScdNUOGBwMgilH|lZl<)-H4W0{N)){-byN*QY6N(?JvfvBJ${Yn)Zsp!hdJ#{F@wo zM;JWonycCPv#NI%TlUC?yTomUD&I|$l{ucL#d8}F^t|I2>$*nD^@djOcNDR0=}?rJ zK}!6;=bgyL!rk4yb$))H4w{L7$-U+F5_8O3K131v=iprKWo&Ez>A@OVdSc?SysWsK zqkA|ATB>VU$bUim2*>U9i>xgO!ju=LP)i6fgJ2~SnH2Qck5HF}{ z{K?uk?{N+{g1e(#soGQ@|91-i#s{-1MJCoo`M+?TCB|LDnel_y{h~$E;<|{8dcV6Z zV`;3HD)c=Pj5;p(;j;LDzvtfB!r=K^@GO{+Q9voLf2Figlphn!wY4iw3%2;LHBu^{ z`Lf`awFLsidHK=*U2h>P=E%7m$QcLD*Qxm_ygMxT0Pc#WR4CkonMdk^c(E#pVmcdK zIkk%XdxHoN{_B1srvJhMvoQb#J;+%Q>h0DqQ|^flE`pp1V5aHWk@pl3)a##&t2b9F zjW!ftmSuLw1vd+2wnj$c{SQ=_aS3L{FUa9dBDh*yS$G7<`8F*|z1h+CZmsI{9UZry zSo15z3z+HUNP`KFy5;cxw?A>glQfT-1I{TrIy(3tv{Q3Q2M9C6&6()wr7T-R@SC^C zZY+f`paSTihG`pZs`_fMzjH-vlr{gJE4eY^*O8GA?2^rj4Pf1eNc1VpB^#5ffGjMF zHTuN56ap69#0=->Paqi1C3disd(Oac^?z_BM~wxSB|`aaJ;=+7da^QNf>`PW#wPUf z@tx|&>QVi*7GX)W&^@Lu-QFo-u-qd)UEKe0G#nL_WKIN`^B9$^awp)xP99P!Oii}A za*Z06qxw=?TU+a)mOCb2N!f<=;b6&e51R`9LzV3)9Mr{Cs9{WYKD6EU}mfOuvEd}f9N{@4H8cArO%CwlsW$zWU$7Thm8sa5RtLLR)hx45818k;DG__^{77hjQ}BOyEQia$fLAXt^LM-}$s%ve zK?Y=wdK`;~VbMaGH*ou#OWAg^?Ekl~V0?Gt-u9rOH4dAQH1WtN02j;R+62m0Ei3OT zk!HG;|LtG~7FFKBUEMQ=G8YG0Ab0>TaT|60!?(f!7MfuYA3B=#>rXN4y%sChzyII& z9cV33I`=yY-P@|F?CRHP0Hka2#ak{kP|QjAq4hJGqVV%(T^`4za6K3N(F?tkN? z`w9mYzySG`DU0Uwo(Rtvwag()+j;|Wp(Ch;WzRF%UXuW2g*{*N|2tn0)b8SU7jFOF zlYwMXX!|DIH4B|f(W;(3=%r4MC+69cd#FPo^hEA?+G~ui;D5h$Aq2vqqcCp_ZR-XW zY0i@hI8(yT4aUS%uc86;7hz2FMQIC~w*WSCEZrvW*m033=Mk_+T9HDDO#Wc|Gf#;f z9<(2P>%FTsLPkvdTMB?x?J4Ta?mfzEZ|E6m)>KUgqp#G~+xw&^YDuHuvxz5gNIY8= zu3IexLATcD1&9+*D4|D0PzP>{jKoLHXfU-I4&0Gs?`r)*)BNBl1gRA&mUhIdb6Amf zISB{Zz(w38XwF<1Lk=BW}a2MO9LfLwxnK+Hl`peF4$hk z0`1ig&*Cn$OPAHRqa_dYTcG`+y|op`xGu0arPFn7Kcd8jr8>k}WVEX#KRY}7OjTXo zOt>;7HW*3u9$=*ZmlkQe@mixnQmVHeHTEfu zW$l8)40S?x3Up{kUt)KZ{>GaJmh$9yi%~fN4a?Cg8^y%?cW@V-2F4!Km<{F~zC(!$ zr_@f+OZ-x#?R*~m&CGYhV_u$+p@NOrX7G%L64w zWEpZ$}L#VA~~^oZIFT#xX6Q)iLtvI1LH{)UBj% zi}`9meC|rgb7n7-HYin z88|J|l-8xIS_DP{0FeJ$UN&tzB2~DF?P5WhQ@fQ(S-8zbpO(R z&VVY$mD7&wH)`-HeU*VOp%Af14$NlUb6=)v4WM6%@B5vx-1jp%nC zzY2wl`d|gzLw6gWSXs5xt8woO9+^C?9KQoE%ZiE$dR8!OAGQE9*<9__#wO<}4)`;E z_ZRs>))pwhB~~olReAMQ2fw2SLhq^>EZ3f)@2)g+b@-2b%k+uojBdZn`5BRZ zo%Ac$+XP0qd2{d)2Il@A8$r0F$0xdr;Z4p3w^pRE(Vc;#no1@Q>lsbgf;6#o{0?rF z=jDEzk|^$rqyd~DG89Xn_no8Lv$c-^R=s$ zUr)5udH($QBIk&u@4Lk+JY>T)NHsHdtyrFs2jDm{yonkL-Fv&0tcvv0q6sx0xNcyF zrMw);wtW0;t}$mzJ3Bkg#tmMdQE$6nSx~JJ;)<>)dpw>EkIJUl;ni!_#-9;Haps2O4 z;oW6W+a1JDJW4N-#D({)0jtvPNxp7}H^x&Q zMFBIv8TyCJ6pCdFWmQVQ12_M)`&ktE`}q5PGG3!HtFB)>wZdiH#OO`@APyTx&Hmjf zRV3>ABPQ$25?X+s9`#v4NZs+jKSuhs=HhWQXuo^2$##hRQ!<>Z2i#JAm-^GblG>p5 z=1?dJ-38jgVci~SVj?*qfg{)M1~R|%uUQqt*8rP|k$3Ua8hn1-mG-f+nx8NW)-Uar zBPCwWVkOkp`yljviFmmoW*P!T9UbO4IS@)1=&!v%W2{pr$Y51>c- z6`LXZ=TDwIftys=4n8aUX`ozcnbdVh1yTOCl1**sx#EKds&x+jaluU}IchfljQ|ld z+Rm3aX$G$EsQ~Is=h@i{#p>+{CjGid$845lxd@NN{Y!MH97#iF)Ig4!GaT1f#^$IA zg?WF&TQSugOJ-ci_TJ@$^9PB-T6wOYF~5h`6vCtSVDW95X2rFR&*dkl(&sJve<=URD?fNO0g4 zh!ACsgt?OMtP2qH^W1y4s!3pC1J+&a`*7zD?uB6Hp7NoLY%mUoiALl1^ z0sLx6+uFe?uOTO|6e!9pab`k!TBtcKRmkxOhu03wZ+_I#yMx;=lo@fu#x%Pn4(A#6 zj2VxxDY>R&KK1I`uly)x&x%!6{6hnw0?43-A;CwDUrvZ&jkyN5a|3Bx`%`dcSPX;s zHNO=h_t&o+a=Wz{~gTsvihkLPrCa#j<%>x#qkd_ZLCB5eiNE6!7KPQc@ zdR_nlW$}WZ`{0{7UkYQE&9DE;UyZ}D0bzYrUaV!&9aN1CYuZ}kn3YA(UH@n3WyyCh zFiS5UAOGq1Jv4{{sfY{CRPc5fWnd!%JI|p`AtFKlDlxxo2dVOM1K*j}AGWjACh&Jl z$h}bAx~T#6bxdW6kfsQjwzf!AfpoXr2?)rKda_w@nOm@D>!vYuH^_Gi1c=T5 z5ZnsX1Xza;^RAV}7_*Rs%q03WUKBZP+_?)XhIt{Fw_~-1%Ic94T(XgMvOu5KIR?9T zD>w0Th`sv2-Zj?qE5!s-MT_n8bzQq=%+AhEY78*t0mpYQyeAvum3ssP1Wx!tV~nj% z_y3Xv^2YeMzGUOIYWL(VC{;+ znF*R=l^8mcg8Nhp+e+bn>D{^#lrEek@#K)7$#1*$IVobjly`FG4$o-qM%4skIS8zm z=N21aOb0%uIt*yxx(W?z?47eVEeySbn}fa2&wg?!?OuVMJb0#^x*{zJ#H-~PHkB&L z=bggL|8c|Hv7anPg_noED73$O`S|#&lLHvR?(VHHLiy4hHg0OiUlBz=aR%k{V?B4$3Jya7VRG>|izows;Pminy4W;JSv@0*AE8JpDC$lw;(ai)lz0xX|HQshIY zMc&Gv+SU=+pmkbI!A5*=fpBI-Oo8vC4IP4T8@Z+UO$nRD9-Nu@NfqZjn<9OLgO}In zZ;?R`T%fwhAx-$8DN;I?YWNwrW6N zVu{6FZ{!Xq?u9Uzrl-vB3cDdQ<7y`n!%@cRG(1nA+q2aGNxm^4hvmNXzJprU3N6$? zJ;1`kvS^!rp!2YF$U&4ENDcKOTw=GJXzA!u%B{L$Wb1GgwK#D%1pr2R`n`V`7hE8K z{eHS?%sdiyqU_l?xk`oC$_)~Op40nXCK6$Oyr9YpQ4ve*JLi!Zhs zxbvXUekByg&BWKw&#!3(AtaPlIabH4wG`j4lv2lT5m_o-w>RZR92bu(ZVJz>C#cY_B$!e9EgK9CM{VsaX2H`;hGqMcukH+4YmA8yIWK| zY@cWUJ(m9{O<63W@2=VaC2Y^dAtV2ST|hboQ@o*TCR;t?o#VD8yr+VbS$HoZ?P*Un zAzYg#RH@16)Znx`p8NSi&%0^6RmIc(kbld>D)cRw z&kJp{!t17CQbhM@ox=f$%`cInn#iGkhwMM&`KF8%f0uQx;PyKBS@{jG)`npg6QBW= zc*zp?O;Oav`#Tk*-Wp3j4M`Z8Mf!qpobb70apb4=NH>syN7fE5Kf7pcwyKwp`FSVj znwR3tY0{m4nRzQr8SaZ^XR;Xr0iku?1u zGgI#7kG(%oiRtG~J9%nv<5E#>=2XQQRMqNZsT(!1}8DJ%3ZQD#HZF+iA zRFbF1hH#(wHyN%OcN0(aA@QFCuelwO^YL1g{{2)^;UKhc{t0a~-%w|<#?byx_3K3o zHVT!j8XJp=%pG`$G^rzsXb+2@uV%QahP`uyON7dmR4r~$dYv=RJ_RYaV&s7rUelm$ zDh-}I)vA!;^hB4)s9~l3aLf8wxqt7wCJaWEKmw};S=_=No#|2<28J|Y2?@K%vW?07 zo0AJGai0%2=ETjyG3?)yhMErAjBU9l`)P*2U`>f9V$gPCzmLSo`0wZd0@!)CgcTKj zd+*}2h^}t^m+lLM547A35C#jk)>)N=G?1bdxPL~QpCySr{Y614b38*x-C#%opi4O?TAOY;99^gtjb}SYan+HdgkoR|e>F zog=Vh^u$fZ!@XN|w!3^${}YgM?lUy&D;q#@|>x=x}@lKbkxN6q#E&aE#jtMsK<4RUzBQ*%& zPPN@o?)xH;4)B9oio;Thkn;(g;iR4vrUzPrdq&WsM>r}O-#7aWrdrkQBl*sdR^)hE zjb=6(0^Iu6nYP%~-JOGUI>vj8@7IT97qukuf296pU&-xpgkxdPVWU7MANj}UK1g8! zUS5xy)sK#iKr9t4VptV1ot_&;^%KezUU6%5Kuut7^lX>?Z%+hW8k8BoLu-~wWI=b5eQu#aH9)FdnaD5+mL#zas+z#_8xU>NSt zWqY?{xPSFe&A2F|$LE9%-^{&mhK%%I{J;CeVTQS$6YGBIiiJRBe$Y<0_tx}-Dy)_@ zJWDL@#yU{=sX;YU2`A~7d&kbv8HA+L^2aW+I7;}TS!p>Adtapz%Gp#8H{(u|Y8GLv zVNv0_eZ808{p4Kkiejy*t>Aucw4YG9g#V54N_5q52Ik{CGSU89ixdJV(fsD4-D`Vy zABo-2>S3Ak-dt~>fTreXgOgKRgv0LqcEw%-iH5BL5Bql=AH)KbA7HBRW$coRnP_Qi zC0LSjFiCYwRu>S8YQ~}bzNg!+TV6l+My)Bh%Vy;^1ESYKibVc30`l15IEE-lBWC^q zOk&(qhY@f(MF#ZfW8o%hZvw<6J~VLfN)G0&K&fDG^1|>l7p^r(;xR&xGR$lqczUCR zY%4LJ6x$E%lAREnqM$ij!i|vob_fIuNArDhmkj2sH!+>s(4+6xqp`@jV@+g3rN2tGG4re)kYBnTrokS!!qVwChrM z(EW56%?+&~;a(yGTFz7eb(HGf#xHZPqLOnBFb|{0-t?+}KLxilU`jsdngd|N{r8a+ zoryuYAD5=`Rna3ib4tw*0J)vo>;3Bk)qKDXN=!n+ApUHsp(=iBvg%8qyPlFfFZ|h? ztYwy$1PB*;rXY;$fdh@h$;Pw5vt`RjiEnszr=W8pcOC5X?B;f&a<;<_8Y_>AzHg6W zw`X27@X={(m?f2<*}vae6sknh%152vzr5y1rW3nGYo zHg9LuRvk;)b@Z}(3Df@Mt&Mp7KQBPI*CuuJbwUCHzMuQQ6~3PbO1hib4TuSs;08q> z@=iJiV@5zVcFz-bNL>aBeIxOq`Sp?z=|_)A*TJ;;%e$MNo|x)-XMW~klI8H zJA^Po0>K)a9TU6CY(2e4*8YSxw-~q5lsk&#)$^Y7WFKPJ7n8(<7bFdqSNC<|)iSO+ z%Q}m5FQ~@6nzz`a-n`jp#&SV*8$~`(P@OixVE#Ru&O)&B`mKKbzuj^$>|j?D%7+C# z8v5{LYB%08&*nd-Nj6PXWkMyW;%~C{vN8(LF7LLaQ7;yBg9KJ-BVA-(lcFV0PH$K; z(#Rif6n|7Y=5XPkoGYf+lAev}WL2El=wbt9JIK$`GB7a-iCT+4UtZGrefjh#KDZ2f ziwt{@ibsA23W_{Iw&Th0KBaIk;O$6D>yy5zH91Tf>pnAXRD?pi+^sjti|o&D?B_0e zr4};}a)hh;J~cbKr18+_Cy?>y{ZH4wT64@}`g2J!j?;)6zJxI8a!%`lj!4h|ybaM?jf{`! zkB|>mc(w|Wfi8?Uw4KqfEhsJU-?r9bBW-fA_gyA_#~~lXb2X&p@8*2uK%-qUV}=cR zYcKo3o=a6#%ADQAQ#^e6QX@}iha~QjG_dyCqy6xf;s^f07*~X{@znBxv9PfDHK=5J zg6NnQrk3)SBg$ea182rE9hTd5P0B6t3-3Fyvbdf=t?|D80iavZ>wFSc8}cW2i98uA zHb;uG%&szDE#`!~jp>Hg=G0r%C?czv6oeHt#g=H@slNKlt`2(VZ1nf@Lo?T8qDYW_ z_h~|>My~CS5e_{DxaAHzd9j5iAtjYTU;I63o*a$@krt0Ex!)eR{Yn7lZAYnKzI(0w zi5@|>707qiWhHg-piz{$*WDZ7D4G(bKIC4lkot^89(nVD*3WGc&*7bKE>a;F_M+O6 zC=5NF!r+@)LIi%!)xMv!a97ZbmF?8ERsSODI9@R_Iyx%M!NGAv6>TU_zAga{*GBcp zC8mZ0BF1#$%9Bem!vjT|IoR2&&aq_D0ytO#8R_Z$EP%>5ppw8dmQ0~bW&9YMG#)P% z*kN0v0G@y`JgyOgFD8sv(7mnx?b?%l^xJK~20mNG1dU$oeQ=tuT()#QOzA~V1R$*@G>Y^m z4pT6GDx%SX(p*lGVDzlHd!SWch62@O60P;37;cMV*4OB*IU*~!qp3ABS}b(Ow+<>Yotq#{08hFK@!$nDca4|Q zFPtkNRcFfWfdIMj<>hse-+cbT5wlNc=G;l z!sB)w?oaStI%ESrYy=o!Qp{vNh1(ck{1GuMG0J8CRX#S%L}>qB=q(#)L-h8d6jn1+ z)sY#!uDu^Wt;Jd2v$L)Erxj3V_O_%Z-a|+~eVWkRMD4|>d}Bcw z8K;nx>=0(Jbc~ds8=DhR0~O?SHDu-#$VIYF_jGj|u>mz39csc-9tLc#Ax5hT-Hr|F zoZz?`vh-{1Af-VhbG9X=55*Q^!8|)FKs>U!Ufdg!_Md&|P;ubfmz!`O-Cv1xZ@&GJ zCvPx8Mk=z^?*r5-Q<95sQ(q0Qui47jcq$$sPaXL3+l8s^ z)a;^HLnP`*IbUx^QUP5)?}J@kBg(Mj+;oK*e#sx6#lLg|v_}0n;mQ1`GSW%x9Kg-M zpPriPhYxRR;kZHc<&+#Ud3FUWY0%x|GdT_m*)K?@r{VO~`qIk|3%}-mx-piTyCTG! zypl1YmMI+HlE)OXXUb4ft6$jXXy8?~?)`OGD<0d=-8pw!r-5z!;pzxqD*E)@H468Zl{v9JV`Ma)(I*e|2 ze*XNqni-gwxMCeLA70vh*I}I)Tjg@oy3w(tjFjRxj`$m+UpRc|cohGeKcXNiA!%zf zHv8$2Bn9jlX`jc7Vf@+PfSewkC7%9qphd`npF{<#*jsTB17elY9Lc8VPo4Wn1*O=F8&)kl6Nm26CnjKZSH6t&#dk9cec;549r zavyX23+}$~(X!eIk+i;^Xc`IlB%v!_df0MgEQLUMewbweO|v+e+&P~P7=jiDxL{Tb z&tBPPXv044Mgp)p@V^LNmxK$wqDA?2ry5A2ZG#yKG%Y*m|FFWRR|Re^TZ`!m?$JWd z(R8+T4?Y_grKyI1^bEt7|Gs=nUxJ}1mcn7Y!mb$Hi^L!-qkE1;zH&(D95xbd?@W1^nyT={hmTDaVB*?dmuo7CsqSoUJ}zEypR$Kd@p zQg{<9aa)PIQ{y3L4DfEL--r&g7UI?p)UQJqRmLg-UA^Q=(0~# z14PPo^<6>IlNNekD2NP@$sY!5bL6k zLt7oxVbixr3{OOst;hTJ{IW=3HT1dzPj<*Nldbtv>#ijnB43nelW34A>FTkbsnP=(uSm5kATT_n54b-r-Pb|#v zuxh&N$hfZ5N%g1;-vHv#1_V@!154`8EAg#(ViP^q|j?}fHzxO8) zn(?;~b8~Y8Mh#vreE7f9e3YaJK?^zAhLn`l$DBA|1nm0XKUOFmp4~2)lNvqO5LTtd zSD0(==}WO{R2}x;MhRanmxWKPy!7VdQ;uPk=%EjExSv^$U=dBVe{zN2EGmIH=|l#y z^GlkKP*0{_ySz1~Ky3=Iw zR)h_YuSks6o~{;#k&4eiIxjl&Y`)FoEsoxT{P18*Yq9d@Aylwu9?!vxq5DLrYsoR0eZJ#jB8OY4FAV{^g}_|5uM}X-E5L( z(7pdM4}ZclXMG7dKfID5G2ZZU^w{ zzT&vrr%2@DrinpR;hwU=H>;nok_HHaJgr%aDFxwQv?vvFI1O?bgvmQxUSoc`D27R{ zpH`PGVKv@?q_5BKi&niXd+K@xbs+`WhGtjwN{m@h!5IFqmJvO7_0W2fG&M5ji@1r< zNqJ>EO+;3toPye$+AkB1;qXrIob?&^uK1HjwzY1;4ln5&s>biUV2APY%S9D*2H~KZ zaG=OOIo%|901}BP<2<4V30DJ}X%XUG)jjI(x>lf>RHJjoJv#MsK>{A0#iaLLltT?W zXgT5v)IT-x`A?;O;RZrVYTYE4kAtwlGBa`PXISzOQ9@yacgmS0EakIybEs zP*+)NDvJ{JV;m_?o4dR)gbT4L@9$t|K@XX&;QZ7lXVUjWL|7cfLB_A%(e|$AMv4Iu^sXnb|1H8x2g-xKM)zBqAdt zyvoSA)%V#6(nl7ah#K*7fAY_*GDixDD zFe^3}$@oja{?$1g+^4@jc`we)WIi*{MO*44)g!W& zbqw(kO>7+77KwM-d1&R@<3VjKiGOO<8MGF0gU-*8r(fuUdl+X1|L3JvMLnzW^~jo2 z{NIaH4{yq2`g~JfGMazW%^nn&x*9UvG?R91=|2p7YIwibldkYZ;M})2XOVB-oPWL| znx=@{+Ps6!68Ugf8~jd93atsqQs+lKl z0^yPq-Zbq&%aSEsX8j;%p$`(41*(nrT9@HP`#Fr_qy-+*sHl?3XGS}N-ig4-I9)@7HBu1*OO4puMDhKA1_w{3T?dlwOx_X&kaxA(KMmdhsrf;d&(t;9^!!1}gC zMnPLEJt`#Nr7YO`F+$K>#XYwVyoo+5<$R2aEgSyel(u51fowC}j?N(_L6=z#F&HWk zkQf>{>UPdn2 zoZ8$l;&y{F;8LhG922>0zUN#0J51pf8BN~a3j#!Alm<21@vU{r6Gp21p09#s-0Y|e zKFI65ng}+{6#9NdamSB_+t3p9?)>4qho2U1@@z#RD*{Ja`|CW`)ISc}oAc9D6aWLN zC9~SlQRM5_e^pRd&Q#x$MciN#KvS$kEgndBzYG$It-fK4yvFPP{x%cFzf7;A%*ddL z$Un!Y%(I9#0l$or<1;ETVIXc#ZPlJrAn%TPV5>2FxNE`^E2p3J%rMfb%Kl*GEe_L7 zHqi)`5qmUnY;S^Y#8?^Q%R<9>N&0*KBfo|2&y;b7rxq0c*fdpaPiYe{Nq%{MVns;O z#Mh?0)R&#sh5nKrb}6dC;N5dG+AWLo)OpHBH=qi*EB!>_0aC{KUscZ9m@Z03v=kW* zmWs7Cgxx5hRK%K@)SH4qPXbVtIW?L!cX=YhziojNz&@HkY=1^dMwU`9tu7^M7a%g~ z@Cld5=_YX3nv=UEcn}iO!Jn`vozmYe`tdgL!~@#yBBD9LgP-bE zw??vad~CU@Nl_(eK{Usxgk;ZakVzocWgB%VdeT^O{YlT`p^-kn1IK93PQOHh@LTP& zmnQ=@=Zj*^Cn{Q}yFZ>|o?UI*j%k=L{Ow0$d-qlz5UXqbK2US$AxXotmK7NY5pN#M z0h90F0`ZRpO0=D6!3=t6w-H?!z6_7D0~&2|9nJGJIrUcPA1W$ZWq-?W|2YHeCur79 zHaJMo-LzSBq7KIsfSqT&%a%qIVUCjph-G8bkny^BxP7QSHoN42{HvzktAPDmSy{1e ziesJ7wHT8O4sl?$pzI6!S71?CJJ2)N3t=FP`dox;-!po1edNkr^A2a)nh0Y0va*s% zHgD-~2~X<20jr0#rwF6v3_FTi~@gawETp7qzzGCc5SJFO2j1TIJ+ z(N~?%F~^xF40x@-(k^8oRj7prmIOM@Rnv=?Ddi3DGJd#B-`~S_GlRzgQJC~OF7XlP z6LOHCDj{bR?oE?=Y|-Aa7^k0Tdi}czT?*ga<3(R+<_@pG=Ev)Q!WnLEouc5~^IK6b zi<^`*fxj9Cf1<5%c9E)zyxgpZoreNMS&Hba_N%6YnbU;+5dlH(Z6Jjn_;F<7{hbK8 z1s!MP&nyPoSB~d`>iWWWKm)Wf_rar*A%*!BARtZR$=N0Ug1H#Wv-yt;XBt|LyHzy4 zB#VeaQy0GBEyhR4Y}?B!S1c40A1|BJ^&08kJ^S3>o16IY4%h0L8yt2Xw)J42E+7RF zD&riJyOIx@zXt9U>$a{}5M-B>(63jWfq8bP)7Po_96a?W)a}EHetj|&wz0Kc)`SVl z4#>AZM^FxG^le=anJEPmyrS)IBw$evaS6XIZD9HwjJa7ezl`okg<2$f`F55hZ>FRn zMk4PB?Y)GYQQS`Dk_Gdp4cha^PZo!unICYE#Sd$EaH0D3Q?K@x@ye&vB*es@cCPNK zY7VewMIeaKSXFHrc(*P!apv{}{^TvLmtAuv-_bXq?tMB^?EkB!rNssAT1FsKPlo%i zIecDFu7Gt2WTifZKnRr6srl3>icD*7*(~L`L26@%7?c&2xYgHJ3uEW1M3W#@S$)la zlPVrL9gNwkv|DqfYb0AM^F)2qk4FIKBtLS0DiZs&Bl1S{v$K^t6HQQ!H{(Dfmn#~9 zbpc~#){9PWsG~4=fc$c#fO0T$_lmnbGkAT}1q2)eBJHJ|TO-tLqDLN3OFn<3XoPan z=edQoGTe%VLGqE1?W&hfILxuWh~fcmg-Dry++gJo)4Z2&L@z05?Waju754tcR=~6v zFU5dcM6rL(;HU2*u@5q2p@t#>j1!j-P9JEtnDN7>AJsU&KSG!;!daoj%%zOq9~zu> zyGX=-3zWGobXPd{rE|J_YY9n8+Lw#tj_{pM&{Mne%I#UzNa7Bm9O`O(NBCGKC|jii zrJMoX@gW!7BgC0W%{o98@v9BxU=1BVBV-r_zdML##N_5HeVjepyA7AD9e~Zlp}*Xai9B*qMty-1Wp))RA%vvA;X6yh^xpe8^UeKS0NX(F;lv&_=@lK(-DFkj8`Y3x@I(jxyw{M&meEvoMF;;c_Gpo9r_G6HnNQd0E)$w3(n zRdx5b;kzEN6Y%sX-eS=bw!;f|^$Po`msJ~a{fPm_15o)`SII)%TEmmJUA_+Rzz)ux z#+65p<*h16KHHqhul0ta2<^ru13qv_qHdx@Ij)--R7`z3z$&X?)Bl8iS}17nqa6j_ zobTYSFm)TK-2TDOmNjBbh@j$fwr(rVH~I_XeSvRrgBHAv^Ni?3IA993>0l>2^Yd1~ zAC}cbwCm`%3@SPHY+CSQ<^JrNQ(WJpK~XZB7T0%H(lCFt zJwxNgPzb1sm_h>b8uNIWA#%*K5`eAOFndgWbOCjhn>itrI&u3k$_@F^x-a9dS{U%Z z_J+~;OW6b^^-aHPG*0?6e*OvmqqbhMBu?a3DdD zVqDY*4!ntrDbE}0pRNSuNawpZlw%q|5m!hbW_YVXEk$(WVCFela?sNH4>`(`Q7e{L znB}9dg=mB9!iXCw5kDIP{QJkbn>HU<_uZH6DmU!(kyQ5`k9PF{<$#0G9yQKPj`ec? zqa_{8vJGvIt_!|EOD}4&JP@Z~S9fO%>F&zW8mZLwbW%oR-n;W=G&S%%S4vqKsId!Y zT!)xGCYuV6QQ);U|6KFfim10<;Wq$CQRCBS@Rlv=K|&uxB#)4(^&8^_kAa{CJ|*^- zlJ$zUz8WdMh(;@wa_>Oj=nOV$@17@%g*Y=zd%tvo{&J8HmJof<<`P0NE5%$=MRTBd zs%%{@<&hjl`21p1UUQ65-o2JwDe>K3domTGLe&p|=7qxfWhbjKaVc~)1RpqsJ=13g z=&Qi`QB7pfq21%{bL7v}Y2l@UG`SQO2P5-5hKPXkdbLId%jl3hz> z43^@Z99AlU_Qx*&<62|)o%&0Vx2AR9Gd>=ZN_d}<)VI@y+w(mwULD!M4jx_^;Ukn{ zq>PbHUCOm8u6Mt$Owj@UAt6t`ukyJRYj2w@*DFc~iVjcIbBTk>-#5zLaEvM+xJmpP z#Um|dur8NkANMfwq+W`5eLx5ao0CC3JwGzyr+{s=QKU;l-{B@V&<~iHXIsD8_nAzP zAos5nf+IP74ch9Wzt?pIwxjcyCS6~MxMVoRR|>coCTA;QH)j;)b2-D)pAJ^=C)d<) zepZ@ZAMYUPVR2B$xAhlnxi0WSaeAV`vXQ>l-No#V1*d9Z$UlCI_#9d8#QvEt+<{*U1|pz`{fbS0B9|2;j}zXZ=Isr z45S#Go*+QvmVSS`M6gACxd}StKexBH)2Pbwb#;KwNC2PG;==rm4~)Z1#WdeK62Zoy z%XvZj6xHLyt_|fQKl>B&s^Zdz0^2g9^1G5>%*i@mpxMLH8rjFl+s%?{(YJEZo&aYZjiX-(Pu$ zl?d{A(bpr^PFk^`Rh9ljV&eAaXYotE33(2_*C%cBJ4SzR-N-_v0}TL0;X zr#%iHX^{xV6!YGAx5^b6Od46%$H2%aD$=YRxcgh)18i}Gvzn&n&AkFo1g?L4X3#&+ zL-gCv>3~4#(cVhPWO8!GW_`*XIR~DLO!TzB&E9YcE4u%w4nNrhbWn;hJtcjjiMC>UW-VaS`c9KEIVUJL5qs!s z_orHeuQ5DEstV!ZX22I)sixV|3xpt+2zH65ptNH_f;X$*$`guq(KZ(6rw467p#Trm z1N7zyVZhhm6)?QM+Riuvimy8^rpgG%whYF{YgWk9iC;pRgmC+_qq?g%cl|~jrmh=! zb*4N8ww)Y}eq#-s-HdxkS#GQzmk8R`($IRw=h3XM{?Qn-U+7&2&$}ONe@ZVSA~1Zb z@0-yZZ-G{B#tYBbEKS+#gY6^;5R-W_+D1aA#&M%OEp_MPsf2Gt_w1W_R(EGc#F9h} z$LgeSC5TXqZW&cG-84xtC|fM1@CMC3Gi1Z`m_mCVuoK6sJB(C00rbYEjhf(G1SQ5x zfhIJsiWvKF0P9-ZRDX$RB;N^^Jzvp?GOuz-8q4{SCkK-BNdczeqg?#Uk2j)mv%&Lv za%)m97e~-)>PRWCE&8}?_xYpYC_VkY#J#cxLO1MlF}D|wdFxC|r#8;TM;57`-gC80 zWbMjRm>-tF@aeL`Ww?pkm~Iy6##?^@4{=W)%Cmn_z7c}S0B`3-c)`=D3mfS8krIut z4mW)3b=IVosi`KV&VRm;^yBEr@%|sHPkv7aFl?_jxe0a@+kNTzkR$MS* zt6@*;XgcunJnhh}^!zK*9aW!}b_Q865w?0>SrLNoUaURjAgKRU1s(`) zKe2;@@GWwsA0PR@mih-i4G|`mEV1f|F~ekz5V#e~tZDMK4_9-I*MOMX z2;Ys|jkXE{0_{H~XL;;$6zj;%by3AOdLz!NGmJYwtdc8obwEz*!!P2|_2V2nNh$E0 zbjrw9on+7FaxW%@f}}Rw`X9-)mg|n3S8}cjpgdfjagETbvfkjogqz~!YhTvc=g9r4 zs=3vnZ^Vg`d=ChIe2}EO-j^R(SsT=F0wGO)98Y%WwqloZ@=z0=P zO3-Bd+#B!4OYg3YF$uP-7K@&^EzNP6k~;DKJcwzE&DW$#K!A6BvbeCVPE)N5qN)4H ztsfQ~fmwQOl(?dSz0xdegh+RcO`>q{8bBHmDdA`bL!AZCR~uW{Utu9|SX3lIwV%|~_ak&x>n+r9I4DW8lde{tsbFRyB-_}!xOZhYq5b>M>h>hf0^ z+3;I&z1~6w0C-UlgTM8c|J9KBL4(-03?ifXK^*=&g8meqe| ze{0=Ju=`XclmG!WHFPMvR!tdytT59l*YOIu&qUj)1;ZDz5N4vfn)g%>bG$1+e5v+4 zt@zH*$Vmas*2y%-B$>KDUzTKwd6iAtvRfkuvg_&BMI){opwD-GrgvkEBNcszl3BaT z73LGBK8O#VS;0>|Io@(!eTx0V8ci6#p1SARBntC2;0fdV*2rwq0wJE1o_WSG(0fVn zej!Hj5q#MJO>Fv5b7m++G&VTv-Y42^JBRs$izT*^@oS_asa#{FUAG^a%FDOwvC`2VW<>bNM|t?MBq6p;}SkRFgOL2@W{5NQDs>F$smx>R5Y>25(l zx`##-1SF+91SE%&l#utr=RD_pAOG^3nftzS@3q%jyZwp@Mm4{+CVc)6T=U`w%J(Tk z=_c~j4i|3BD*$MC@}~UM|6xM=VhCyiTX*kIIKKaAnKSqjD55PnS?isi7eobokVoVs(RsrZCDce25x_%3RjI^ri~zUqBWP zzhPZ*d>^ahE73<@Q7N!mStVYJbB{0((5aV=`{jR**vU8`^Sd(nSS-o-GEa`2zsK%i zr<#4^YiN_4k8Mzdkwgc2bJt>}5n@<6P!{-4;ll_0p1z{yN(#rL%O6%GV9cN>`imnR4w*SV9Iwa9HE`( zfNkUE?(Xi4Z!GXC#llFJnppSggBZ~Q0fO))ktYZac>_96lD%{z$`;;RlN1B1N3uxBa zVHQ}ek`Ti?nDIO-&p~jskr%ogD^dugHtOEcCUi1-pSjw&GSxIxrS3)6+B=WupW{iU zZtaHf_M;5iVIzObv6BSu+AE>(PF;=;t*YdlhHE(y%hU?GwS-nnMN0i=)z5%YoQcWMp<5zBpHy}bJsy&7u3C;v3*kAwrv|+fy zi`}XaHk=feH*kBf$SJz`k+X?^GB3Wr=1N``O_-;W_Wl)_A_-mAXKC; zl8!>r%&UY6j=xSX2n?X0xQzWLOBUSr`7~lfwTzMfECDHxL6sJNN&6mhQ|Pl8L{}Ek z=>`*yL<_lvL9&XNazKpg;b6%bo6L*nFFb{ItDXfEqxzf)vN0lXpaP0f@hYxh2-}EZ zr!(&hEZ-RB+OV$0>l02a&}1n^pFI!^8<|(V^p(GXU(A~QqmtHi-;4%Q%A8GZX0r9% zFY#f2sWsrR0rwW&=SLTD%3C|=W+ezlUjCQ38;f3=X2YS?oeM6U9HrhTW}8Zo)Nw&*Z;|DZ^uwMIuz?>DyiHOwz5kSjh~>fb8g!sT)qyTMJ^uR^v^ z$)eB7E#gHk3gC&z-e5KqvT{Qor2u~8wxHjib191KV$*x2AW4px5OJjFsN~C0|0+XE z=!B&Gohq{&8W4aL+uPdXCDH564WSudiQndE)EXOp+c%qSFHk{MT-wj6wQtG!>PpPg zmm%R5X6L0jUGFsCtKqBLX7>BXcfpC_A6m+Yd9WSuH4m|#n780U^miHy0L4}pP;4*n z8ZY7h#Vv*&&?4VQ<@PnF>)(kG@~yUtHH$Kd5J^rELy1^y5a`D`OSp_A_(1^d=bk@;70vf15H@a(~EnVXYIQ9 zGzvTwzxp!^+GRi{a~hWh5(lt21?QdCCLajM5tZ)#(2wk^;L{8Z(WYz0tlLKy?T7Yd z^%UI{NHwut5lJ0TF^D(com9nx3uGEa^q<CT0G{+zEVru)rS{B0o}H+oVXxEl@W-o>mXH8Xc@fim1(vtU%q>bwFA}{&jDPpiShP zTaxa80lD4z`lvT504QR5sc2|y6W_5tepesjDGW_dOmzvy1z@MqN*|=$jk7`bn~S+B z!Dy0dm(M$X@H{>b;*)!srT7SGv`@?5j2n4H4{_=>j1PZ?qU+6;(7lxS&2&B+t+ zCbOxyWTlODQhsvnrt+)PI#jdhZllpZr!{hT{JrEcbkKKt&r(PzSbTWk85d8&ne+hQ zrUgBFb0lUv_7 z*6#BuMh{i#O|0)>2vYk>mB$ZV(UG?jSL2mC9bRlDPm+-fewFd@y(*jf2xVoK3;aE@ z2f&eg3ls?x@ZgeO6|X1kLN`1Nk2*uvl;{>PRM}V0kYl^>Wjlgo)% zH;%4k2wq{7?_H=AH0THQjjSRUavpqm5KWJw zMXF6riYUx9qB;I(g2t?ei7!;R}h#BHHw+Lb*`?0BDiVh%{5j`@3{cPJ!U{C ztV=VS%`@ab!w}2-y9rgiJNW={?m`(03lZsnhk(FlphSi^hlZQ)O#sIa zg{rSz+820&@H(-TmNK%qI@r6MQ+Zjk1q3JdX2LYy%rAZEArw=TIp!l$am7~bXYhU* zH-Slti{7%;9Cz7`mm1dQ)N64*hAno3vz<0VjlOLfaKc0FcMcCclUpd3xFgHcwS@+R zCKrirX>CdW<|{i`Jhne&k*j=)7;_mO&y@uHv@_t3H!xx~)M@m;Sb;Xk@)|e6YiCdf z41O?Ck*z>Y{#82hMp^d49|nAjw`VqgnAjmxe^LzJyW$+?{~hG#R!7Tsu|UYAbj zlt*~ySZ?^h9lE}(KL9|`!@Xwxx!KCs)5`a!&BJ<}+(v>ua@Fa)>@F{M{4OhQNgRAH z^NLqTUV`eU1-E|FNwC?{vx^d{mw?J9fRB&g%p1{S!>H5Ok;gPoh*wC0L3NFTnW`Xt zyF&COQ6}VOe{saZ!K3=V3KmG$0o(M5@z@N$Rs2@(B!h)mixLDM!pXIL8292On#jOS zK#2Rzk2B!zl2*LkJlRxcMkj>{>f}1*0|2Api#wIwF^sStBsYidojap&0UTOyW|x!> zzz+|+afi#&7Qf(g#PIe8y#qNRvNSS#jsEnrO$(Pi7wh)W@Uz6j8oy9_=N|qCXn#;!b$O+we*%94Y4l?KT9Ki3?_m>$UL5sl#5Y zu7PktXm}5G6K4XzO6JKv0Zfb*U#K&+@=weh`xCo)YMcc4yJR{|%$*9EXXpTw_88&D z^IDaC`F!-@5O`e`RM&cQ7h7W)${Pf6&R4gS4j{1Y1(WQRWb9Xmp#CVop&e*`DRTlw zx#clppeWl9Sp$HckiJ@V-kuqSuNvhjNpC)4RPD*a$iup;b^XDQ&@Gv; zB=?@1Lr$JXi#dOHy$NmR!>{Mye+;6452Cy!cv?^Lykk)bHs!I?%zH6L^R)D4E;LJF2pQrjHr3E0g+!M2fJRnb36KyQ-c{v7O8g7aij4Hnk zs^|uBdFz@bcN?eIu2THQU9!oM`K%qB);6S!w~2WJ_Ks(GpD^zWvNAIxnfwyj_Od{u zkCPL5P0R9Q%soAq$$q)p=H*jdN0o(ELpLS2hN*FSXO8H?Z|uDLX>YkQS!3Jr>Bjki z&~>pLP)%in&3LHfds-T)=Fi-hND3t*^AUjh*jn5Gr-tF~Ax=B9oa8-N+1|{HlB%j$ z96jy0>goHA@3k*RG;3~P8On~XuFv69w48hW$wIg-^5yH7&2Qdj`TEQ6D$oR^a_esBmCQBl3*UpzJ*4>CZ1Q|MIy%OxP`AmWDSj&kpu9OkvxmLWpYJr{!O@DYW2ME7x6|K`jLq^b#J&=oSnp{2ePpz9 z6T-)9z+JB(m5!23ZoH!b4CnrltrhhXyWagbq_rwvic%-*Hn=hqeS#35a+c&_$xe`s z60d!Q?|l>bYwv@~jYV(DkEPEuy^B6acrATrsSot}NFVVO!2{q#+i}Mu&X)fW4{I-d zVN({G)CZKQtNJC^z0LKnK@@z@vIxoBGSNG~*GqI4)XPmm&6SmvB{7@>51xp{4%N>_ z!-1P)(Wv3zlWD27;w$>bV05QMlKtAaVLtWPuPyaJW=Tl7j{JhRmil@+09}P4trh79 zj^$gPu)83ddpN-M!H(SxOmLcc&ES&4pw?@NUTj;rQ$@XXnHHA2TYpK?E)-AsH*8q6V<+L@@aE z6h+rF0cXp9NAzSKfuJudj6|Y)@`3Q{My-A4!$w0{H)MkuddBxIrh0Wg-y^qKa1ssp zGJn&DEB22wyMo2uSYyfH;;YDMymRtdd#n6DzY!B#$-2^8eEe7RQRz%2nfBN(d`(jp z)V398)oc}7rVY<(eBsAie-`T0Afw1)%f?Uqt-W>vTlG%iCI8_CzuV!LQeGc!Qah;A z|Bo_rPVK7H`%kDlZ-Zy1q_F-grH>`o>TV+O2U&8^$}#g9me~7q?z-i$|z~lQZuAm%?3D5{N!X za_Bob+b-%iOaXRsB}4hI_OsE44EXDf|H%1bcSRqKgjJT=c~MLss(*fPb$Gr6_t4Cb zA3uh|3MRQwfZnvX^(yk4@H~H&2Ytp+cV%%T^JG(z)~4-_sGBxl6?>ffYdA_w7GT;p z+IHj9k4NY{uB-?xWR^33jYQYlLVr7w$qXbZN8-Ufs>*(q05At1%kWlFM}*MzHU|il zl{PSuoeTVOuPuMYRzj$g#UouU=}DS;fiPNFgOGY~VfhTzE;naZA3P&(eHRchPK&#$ z2G_eAQ{wy5yDHM?#h_YGrr#kRd?NZ<=xmP1q1I_NwT#rxstX2ucgYjz- zTohx;cyleioMyj4>PL!b$85V_oFCPGn%z$_iSX#MVdB93(?R`eX6b&UNBHjr%$b0l z6E<*+akG)x1uk)4ty1Q;t3**-4Zs*De!*IR!NhuWy8(6$z0%S4US{k8 zKdEMvtqP;RrLDTfXfum7=2o;w?{M)-f7Q|qr7EE7lCp{w1-EELcVW` zRCw^_aW9N>SAkKSol2DX#4LwKb?Iw$aj14^AzV~LPBjjd0a%j^ad^M;p*JqAb)trQ zqTo>l2ecj@nvLV__CjjWVnsnQ=uW1cY`el2KJPaJLN2do6J>xg#X)^D&#BmZ^HuaT zHUs2kdfs~9*0#_~IwQDLXm?jHOz$p@CQ2JBa*?T2`#T%c8;{p&>Gn38v? zO5EOCtxSCLri3Q|A6ED)0i6cmZaDsJ;;+SNM_Sm~tiz9iyuyRAsmsVM5~a%t)7-v$ zGBLx=FMZge9KGEwoA|YvHi_q24HeT>#steQ7+2SJ5V*;iJUhK-r2oz0`GkU*c`W+( zgEKm1^f?qtyUbiEiTkzJ4bobz)hnKD0)z|jzkDW==p9efk?Lnau1CS8Tj%g*2MKs# z<}LIPx}Wv4z_nv%plRx~^-$*9^IZopse$jq2GFgYm{WwROL|`^F$Az?c(|SPmPb7l z6I$lbjRJxZkvRV3_qLy*mt270HXl7*Z_C=A7|AAtT%OFk&gw`cbrq_wcdm=ehNfe# z=ohuFn`2TFHOPk1@Na}jAgR(7rngBKYQv_1wJ;F1QFEnOlgd(FMbLkJZfOIC1;c%N zcuYt!rXEeXq@9ZCQbMxLp3T9-AyfKODNFWtZzxO3hHre`KBy_E6$l)&)~z#6M(K+1 z@j3YN%1$Lso^x9s@*McI&Raf6zY z7CG19uk=}2rGOuvkpD!rx`Fz9E8?U+j-`eAta9zjb-USoAfs6)@Px~hf@{eM=IQ!b zOk~VMd z$FjSi8ux`~SjCKA=jWikvaB}_u;@08;9m!#Jg#9eFPn82w}>e!ld7fM&;6ILc63`Y z9}5x9FEsM+_bZZFG_^fu?s`nq`axxD)JKP+M61ojx^&TT}Nv85}y>tH!?mhI+q+)LCT%UOC$#mM+gf%8>{s2N&0*#GtP+YeH45O}f+pfUbZ~qTlh-W$tyy`oRH? zTx7*eP==a;%>^YmGU5Zn4o9tPGUUUfnTEBjl2ce3?^ib6L@oy{9*kPVLvgnWZrSub z-Jw;^_;IeRHzraQE|@1x7h#}x1UN1X$`-G-l%hD45f*_)mOefdI;-yoEp?NaL$+9L z+}l=8K&|OsQB@TdWX^u`!@JF9;ImN+HtDk=6&=3l&GE9GdBF8Dzwta>O$ISTgZr7< z7XAL?wzf?_OGk2cUZc=yixeODdy(AS%jsje?7sqoi?!)OfaOUm>!r)TTmbTnRXfF) zx0^r0^?ZDMRH|CI`~Z$xc~>H=?zRN1{~nCaOF0=?6IIiDd{JeZnEz<;9x-|6o(!V; z!$Jyo_BY@YE0R({ufLC|)~J{!+)P*3`IJD@y5BS@7t_1qn$hujOB)fuMJ(Up`La#E z0CwyNt$DZo7@<$o$&2N`<>%#DNLgzYCU4`z3Zb!1(Z6=!QKYuvHhh>`SJmc+DLT*5 zYt0zbBiYMhAgHqs(+wg8Q5c6@OqYY8PC>02dri3p6NOadk~<+Vm*03X9<_58*5fNZ zko3h(XBJrOnaSXM%;$HRxxc6<30r&=dG7ym?MFGeB4iM^9EbgJ$_IFqRBw!H zSyp#ii{CZqJMs!zH^b}QDb+d+XI~ms&-e3aDl?T0+--lFI$owV>fWvu!tw;x)zHB+ z=iWCVN(M(heyf$2LP?e%t;BNK^F{S7@~j$uj#xZp7yMp0fUpRDakVq*4&_?N%`iUc(v7P>*dAO^*7h0bj>_IuHvT;$E!6_j~r<%oJ@_j?C@^2 z6AwS{P@JGzOlLs)o}38|JT~T3&K(uD5{&ZJ5100gERR*UZe}GOS=E!9E7s1 zlMwccSR?OHT2m0(d&dysCWqr2KeDf4>>T0a-+x=NEw*2TXC*;X|^Ej>YzEh<}@{`45k|`vAf0 z6q^1Xu}wuvu1I4nx>I~`cvxb$ip9MI6{B-YLPc{qp`7FnWMzpjN_7Gj}(a$CCc5h}F zK+3D)4rBDv?Vif0KJZ7qD~2f91*7JPUN1Q3ZLAjRYj1)o+~G{f+6O+OSC)b*WukDv zWg{EdFSQ%}d@vBQR%=ALZP<{JJ)cz7Cd+F+*_*9l@0M!UQ|LvlmFr%+TJtiwcqw-q)3BNHsilpZAMKulO;y5-aD?hFN9J2BCVuTiF*f zrEcq1kS6>j5TDT1L57VVTTqPm*ZjHa_*{g7Gw3Iz^l2 zZvhy(wE0V*lWEZ<%R1N;58x6c7b}zTVq#d-e8X@uee|Jju(8z<9dS29@TZ+@JR5^< zS_by_nRVm%SOKV4{~~l!A`%oej87V-9xe#YA16-uDk|9Yb&hn;%*KnP-`Nz7Sdu`YBAF(Ao11_m=vFhZ zmzFSTWE5K4>4u_<_r%0mbwuI7B#RU(WzuF^Gc>s03P==8m-F%99z{k=6lr zb8V)m^9mEBTz&dW1Lp!*pZ8`pKF8e6*t_P*&y7Zm0}sj5Q(OKhr$Pg^Jxp|qJ2rId`nZW z%t`b0W;EA!wa;u+=AGw1h37SXVS);H-mNd&_n+Wem3T-v>Ai0n$Ai4wKKm12D(dg? zuzFbE=E4TzZUN_4T;uGdfWvP9Zyy{V zoKQZG#_zptu8uIhx3FQ~Uw5%yG0OF7X&kor1a=n&`_nwLeD|f+>iAovDw$sYyc^5f zPy{jRizLmg*re55BE>D|bvG6S|{gM#U|6y1LL5}+{ z4L`Jcizt9CGy>6{>H5UeRV`$#2Z+s|&7$~+(760~kM|vua$9!hS2lE(9wY?M7p^K1 z++RNXW1P5{BIc23St8oZyQ93)pzEuiE;iG-D}e_w;pNS%4~kclxgNT*I9v1%92mGz zzjf3_=5u+U0jN&+{hUEd8sIeC+`%@I0n1dC_kl;E#zo-~SU-e2FKL2)8u+vw0Yr_$AaxpabMMT&HF;f8| z@5@ZSb(U(%`-t$S6r`n7hjb;sq?nxj*2vZUie6?=5Oos$>z*cOG^!t{v@#26HJ+q` z>-}vQ{gdf>5v2d-gh<6wY|HZny$s#XDUv-Gx#P1=v$$=;-JWD!*)rV_QiY{W<)32G zGPG%qDLnK)ZC1nbF)bk4l#q)lX4A13US?dZc}U`2O>NRBk~enB0XdQ}0 zqp!o_dSyf38O!Xr(fa|jy{vclXH8_bB?(kBk+s4m#&^eKt`VG(VS2;Tcypm3BB#fQ z+GmA_xrLTiOLXL~RR}q{>+3x#Anm&^=0QWd8Cjx)`fP;Hx>M0yu>Gk9gfdQMiACYO z$;#bq1!JnL8okWa&{!bke{0lb#<6VurnT*s)Okd7G*p>^zv$-uJQp8iM>v(&K(fGU zZqs$84NS3qvnTKTv0toa(zmUUHNRjGIya%dh35~IysQ3@mwcv|JCd)cUYK|&NB@07 z?psZ4bigG4{4p>3a7}5@)~;DUyk44%lJ}l(mekl{4L@A&_S{#knBmVhuGBZdrT;YI zDf-Lvxm9p65JCrdRg90BJu=+nN?tgBN!V7U@$%Te1#vJEc4c$KyyDE2R7cEx=qJ7b z_#2C}QLslhx1ICUHsE-ht7+ESn<|i2H$A>^R0L7m_mD+9p5D&7o9od`k}ay}wzkI( zYHz~qZa(-Mx#~qbwg#*yb|siR+ITI|a>2 zYEjSB&lnb+bD zT$_6PV8x-4q^r{e*2-HP+Im~FVJIc}4OfiJ;c=W=W-;Y^fi|m>-!cN99FRY>^W!|- zR3GQL0E9>~1?8*zy!`V;sj9pjW6O1xr#3#Icg)Av?+YmxcjDCyij5hlawxGR8-T%z zmDRJuG-EaGqebf-i%Fy@yDOe(i`96-oj(;1RYb(E(WDz8bd7Z$;kQVEcjPsmbuJDN zR~rAN{Bh?@a|-FVe1GTwt-TqBweTsm)PndTLQP)FAd@$^IrqV+_N5@?yqe4ikAN|o zH_+(iiO8G_9PZ8hw)WO#7#1?2{3yk5)uZc`9LhvTe4w#AuXQtykp8%5i9l>?m(0<{HvI9Rwx1;TpJdkc zM@46bN$Pb>i`NJCU!dL$U)L1OEYok+{@p^aA)tLPr}&vXcd03JFy5fHv(UH7+wWY` z!&g0wN?r`hkS7mK8U^s=7ERxYTJ`7zl?y-i>&mA}O42qy3=jvwRbi1Y>q5EDJ0rYB zzI0g%45i=f=l{C@GGS@|0W{rSU0h{jm#YUfnHpu1yQY??lZeWCr~OcUc7S@~^AB2@ zT(ZlA9%*pMZ9*1IaWps!hi>P_3Gk|fJ?fg`^{IC>8#}sF-KfPr`a(3#DjhhVQ~+@A zmNq0C6`CrNrNv&8`_y7xKs4aMXoC^5;7-fR0}~S@YO_h>dlK$nNlQ;Hko2=JYAvNr zJu4!@l|Al8-uDa)wXrRJ@TThI^2G5kO+7N1oyYA4BJB(F;sfxk7ey6S+~W^$!I@Jk z7vrGzI$aOz=ij8Fq@+B>DxDS&4Sy3qMT*+P!9R)Op zfdH>3f%8`{LzE=RFME|nM{k-Uhculi#y? zk1kE<2mOljNd{}|-Wek;L~m&ior5d03?rs8q8}aEBJQ?ych( z50Z^h$1-c#s_R9k5l6Zn*)uO{D7?Se#oocqhQju<%%9Oh+4O z8z5$Y^0c5Uuw};$CBf9^l zZ>8FXY&t1#j2$dWlFPY!MO@Ijcp7U^`<7YtV9IRKgNQ)-6LX7~&Q}l?`kUOlD_}z} z`ZIcuC2cTN{kQza8qIfGyTY13aL7qz$*D@NFf4->_hE+X&fVAdy~EEA3_b?Qt>oY=&ZuQIFsx4&!e+v8DK z_PR_aREoM1P5k(#7G??1izq?_1@+IQDx>M^K`S#Ai&_h_X~VWoD-CrnX_O6vmY8w8(d%a1^ifgF%YU}A@A?>2-sTw@Kn6>q+Q>4$*G!4<}O&b`oy zwXWp$DWqOdP|y(-E$vTQ9oD5%pLr=mL&Mhk99{JiI586_nkge@z8=+xCjSA-6H^C= z-3ETUo}ZWxuVT^^?x#W5jwJ@pg7u3RQt6DEzE_YX#45vKzCcpIb<2Y)@!bRGc;rx&lA~I(z@ay9rf!q;Q53#4yb1YGZ0aFJ{`mue+ z87JunALoWyO7Kb!)v01`zof`-3wNd&5Ez0ATBRR^@_>Fp)Q}BCb$St?Y7GLHff0?f zA$Kcc*5sds@4%qgIymt4C=}`vIKkmudNzGunLL8?S$W6P=}HcpM!x;FR=NiH;6McSrMt0W>>`8I5h8uwvO?e3P1dMU0BePNZ@dm*~}ikEm6a&Z-(k1y(l zzJ|p&ddf_paY3|}v-W~^ycZsZICu}hqHog!2S=c9LnI2bc92?Xqk18x^(!Z;%6V8x z_;=$@%h_WD*&V^|Kwr!Oq_r|SI(qX6NK!g&YuSBlS{p_3r|cE5E`R{W$eu>$qIy}-*8>k?5; zYOiD`tZ+zc4Z=l_GAQk9SBeej@UTNeMfF1%j~*AYG~9*6=7P@l6y!lGCJBGThJCQL zkZvf;3cLAR;?C=i=u1n%usoX4o(5{OP48WC%aVex-Y+-1YP2nWd3XVwQr9`yW~a{g z!qUa%0P}l))p-lS$y;(bmv)g5xvFI)Etv~Xp(!k{iuL{B#Bf~k8{^n02%D2bc=I4f z!+2ZV$D?KG>L(wB)r`HuheULW^1ticQyi{%RcEpX*! zh8W7`vo0=$tWAK)+$5Vvr_mC-0|Q;q2udNJtXg;b4v&KZ!p$S2HUUNVLSACBHkD5Iia!vN3 zyyN33_iCF)t*uLdIi5m^5UdeM;;tNH=DX)|8@Y4Xj9ELsH9S?1x`(QhIy(F>bnl`BT7ytS52Vl!Q zaxuH9{(3{g*ylSqkOh?+gviF>KKTOD86nl;qSw;A;{N8Mh2wUtu%*(@ay4shi;tm# z>Mr5>FKuKdpMJuC$#ctR6|Z!wth)!B1CjP2%Dou?kN}-BVB51NzQkCh_|lG8FhM~F z#NBA(2rN4|yf|&_^a&&?xZ}uTg9_=3S~Ejm}_|0`L1=(rM@cy%esw!X%uk)G~UQ*sg zfo(>zE54Hh(B>(A(-5L7G(io~WGQxgcJ9#9EuoT`V-3j_J|?ChZ*F6f?@la0$KIsG zes8aOi^sF`%%aIaH#e$$I95#Z*7IaJCreAqRlvt#v!GXad_&hvyhKmqPcz%sNh2E& zTrxv1oK^ahDD9{Nt};B6)S>LMdfdtn*vc`ch7JxLUCFrss!2EQmey-(eQ)=x5QRpfAhx)xXJ-uP{y`)@;81-B~mCf|EF*3 z@dde=m{gHw*`NKEmX>RXcE)S?dGD_!lR4L`0()~JV&XZ~z<0T#@M2ps8GseBYq0T{ z5Cpu&y}Q0A=t00n@T|d3iJ_+gwrymSo*pu0?#R+$mA`%(@491JF&y`N!EBPtN$hc! zep%)U;P8@f!gK6$)q+W)4Kl>#5Ccq$m)HDPe_K>0(U%-j4-YHBZx0fqx<1VVT>la5 zI>+ct#AhB&`E>R8LNhpgM;am7FEpF_sn9mo@onoS!SmlN4|k98z+Mr9EVNf-bKRO; z#JKp*T7)ab%%=CN1d=iV6yz~XtdG!ygYPx!4?QeGR1&j5G8lmpDSG{0kIMMx4c;b) zr}4R3@~%ktJ0J@PN!$ApPX&d~Fd8~<7`T~#=2qax+j_ILC$?0Tz*w@cojWpP-{+JN z?kGe-O1qkJ-yVM%UZ%r2Sn5dcx%Pfiz`VB(A7Vb8TW@JYjfI%$t+^Sm##uDd>|zld zpXf58q5M8PJ`nW$6eW0lqp~_)=n(^F02iDVV(419Iq z98h){4YKf9aQV6AnK1FezB9yhaFE=BHK&9+PVE=EWrG(_p)+>LHbFVNT@as=Vfg}X7qK}KD!5geby zHZbLas$`B|r%K(O;)mm~-od{2)e<}jATbkr!cZbn1^PTI3ZZW7F_Lbjl=1|#D=r@)*C_O7y6s z1*@yOZ#YVJRaJ57dVmmN@pE}@TlF9p3T$q|@;2bu^viCekqD>NO1|JH_qCT}(l*UR z5arn?b~#9rysj5$A-R}gU9S@rlLGg2rQX+Kiil3|4iR;_j~FPhN)A^c3!C*~awd#? z*RV(Rc&Ft}kX6a#q*1;s594>@ z0G)U>dP`YpDj!Z~0vtwQ}2I&w3GytNAW=? zC3Q#?DQT&qwIK3uWS#O}J93EJB6xI2I}-~sZ&i|AO#-H3CMVAGRnLo||NJm`?k*Y7 z(m6I{twA^agCj2~U-#gTkhPSmwl_fiCI-F8O4NKiF((wT35LR6CzOB$``?FVxtCQV zNeXGX=l)ju26l(2n4TL_Em(Grva4Ag1%c^9aX(K6iYc)E`=pN;1i(a6Ko(+pX+IdL zK>2dVrcA##HdG0eJ_9YBL8CM(*!Gw@=i_j@;8uz_H3KVI{{!;>{#+#~a8PH5>Blt( zS7WYWvy2QSM^r)ki8<^3_B8KJ+7pC%`tfoRRa8)7!A@~tzRK*buJ;Lt6#f}w@TzR` z(li;_%QF~@hMcyMcaF%8M8M@YV9vfVqkG#}1CEPYIAw+HCy!%OPz~8lS^~nHsLR8!E zbXeOR+0L%?^u1glNIc&2$&9R_oty3{SS`79t(p|~137o?kvJjNe^$|>RtD_FUCIYk zm& z65t%CmgwdkcN?E?Zqi8SFOom`Lk60334!2M%OM^<7cE9i%f!9M6(I~*_3)#>4Ol)9 zc8Nf6|2t(%xFD5%byt(~*$m4r0A!AB1qQEMSkPDl13^HW*@rC9q66;uR6(PdaVJIO zIRE_|3luEMGtxnBM0Kp3X9&+0sdW1##9shNu?l>wMit7tCym6lH))4W?9>!1PY;K_ zK{NNocPfF!{^*z`YXHjj-)|CvejML)mKazXBH2O9y&81Y#=b>5m~2ETX~@aCnU?PO z-I0bD*MA?iW~uWdY_1G?@?>MpmW1WsMf%pi85fB8j}w8FQR3}ESxn8N2Nu{UcRN47 zOOLay+WA*@EXE~O0>sUOmfl=|-;LEOp30g{;VRos&jj09nHdi|3hVp#+jPN_UwLVx z%zrO29k*Xy-jRxOlXnwL?G^9V6e5z2B1ZeZpb>^Z$APP>2W8N>h<#xa>p#cCqbv(T z%aU74v~;3l<^vq=Nh-?hxxPk`-NQB;;Z*|m=43LR42$a!hj7l=)Q-R+2Cc5<3p*3`v~RluieMO!EhN_1S{dP3 zfH$lEu06n%txmGX21&B}K{HwGl%7t5XsUQoBweQ|Mt*?szC z_UKu{SgM;dASv?90X2UnkJ3k@*J*CZ4v#W}Pc4`6n)*h;7MNhvob`lmUA8hQ#NLz@ zxRhts8OKd9{%6Fb3F036n|Qb<2BU~MWV4^LOSi7iriF-mc1$K)KKP`Sbl;>yb>03J zTuR^u*X{L6!GL*12PZmGk$)!)Y>lJ{u*VfpYg`cb#;C$@X>5olFbLEa1*o_MCv{C2 z&f$kDfoQj8{dqu10AV`x_szCU7e`53YEM$gj1s~GE-GKZjizEay^i(os+?u|ZutNS z%XZAqFY`({Xzv;)9Rxm{V_sjTM!GWGkSxkb&xAPIj6g&+3A9aLn~2Iz?-m54Bb_yl z+eM?+yyh6zzW;7pEJi-|fYBmNPEgf;YFzM(f&ezxqa2}T?eTl4FOjXk|AF&|nmH)s zj>^g8>^VEPUKusYOK2YIL>RAW^d!-@cXN`KJP~ z{b9F{?ailY>1y_0O9IPrMr?(SVcE3e1JjIhF|@3IsG)8jMQ~>Dkk&EGRL<7k^L{Sw z?k5$X;n6FM|8JPue}91lJD2pk_9w6>AGSY+`1^U*hj+0-FRnxVMs0=s1Oe7rlZ)eq z$P$6;r93S;Of~OKs%QfTYXoXy-d5=BckRxZ0Lvd?NchDiv)oB7@TbDs`pGOO^tHl^(_^8V}>1O@RO^>;kPk^@%3FL(A-PU** z!bKQNQWap<@>R}e*{|{TD+_<@N&0_QI|()|Q)~Y%7|$cbpJrYNMgcMHYTGJwjS0s3 z#`7(T4$EIqxAPhQ0-8{8i>F^%ltw1>ze|S!%=TwoKnbX_h+)PYgo{c+%Hc34-9u%K zf_JC^=-@tN7Z)y!Izg>^L;~Y?2NvCWF=^?vbYf}p=>P8-jz|`!LQ!4Hx5i)2u*=1u zX&DCgGjJe(JTg!j>hcw_OqySD+b0Vs>xlk68~=?*qy?}35mXfp`|r~GXI!Me;{K6Z Xg=CJTD&t~7z@MCqGNSa6;p_hc>|fnc literal 0 HcmV?d00001 diff --git a/src/main/resources/static/img/error.png b/src/main/resources/static/img/error.png deleted file mode 100644 index a82f885344d24c7e975305f4ed348019aea10dbb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31851 zcmaI7byQrzvo%Tx3GS9aa2*_iy9OA1a1Rz3+}#7g-Q5OvG6Z)BPLjbPK=9xYJlH$= z-Fv_9{qgQ&Efyo)b?Q|2>Dqf&5v8swkBvcwfrNyFt*9UiK|*>~2K?Hhy#zkdFnpW< z{=9aV({tB!`rz(m=4yo`W$9#YMXl&yW^DzrGPCq?8MP8cLV8XO)zWjFA-QhFXfz>hh^@sW{76*+3P1U9B{I zRkbX9?JR^WX(hy|MZJXq0}fX1X4Kve_Kt4C-eR=>u`3L`{`WB_E%kqfxZ8=*{+CmF zD(ciSPOeted>mZt7F_&X)co8W+;4dW1O(WqdAPW_IJtN@xp~;R1%%)72y<~!|Mw3q za5Y!U55f@HcmI7Y;GGz)jk~+EFej&%mlucETMj2zYff$5$tY0j_zjO z?2c}9|6@Vc%FV(R>g*16a-{xe(ahY*!(EIP@btfK!NK|en00jf?=S%YL9 zom{n?ob3N6it08_?oMttPR`Uantar{P)AEAFSq}UR#6dFbaZn!bF{Ehlog`|=5s)y zmcrb!g1m19rR8J=_yxJS<#>hU_;`i*1f{t7rMaZ|Wo7?ouB?-Vhl7=)`~S?f{J(SG z{jYQXZ3G8r;L5UAu24@a%Xh9$4%Gj-VPWY1?u*R-YVW`2TK@08$o{W$IRR%l|1InP zYnlJ&BVh0Rd-;DhE%4_5Y6c;Gr4v`PK=a-t&v;YY1RH|qZCs|7q+DN= zl%%@kjt@cBt;AZuT>D|i;@!`HsYUCBUD2Lz)+=v+x?L^$9W~E6iMg$WJV#X~VpPt2 z4+-^!4iJd%e1LM2g-aJzsK-)@wX@V$i*N6)87--m8tcL~omz&Ul2xApUo&IxLpZp_ zv{4j6SZkWDU@U7z5!$}ZE_w&e*L4=L@FMgCi8`w)I218wdHXX8;j1M@HAj%#YF*l@ zCcnrX;Q8L(2`BcOF<5#1CLPY1aeBQ9a_F3@?>sYx&MVpJhFN@TOg<80=uGD%IlHlQ zFn!=Vebha=8`c5rU?g{254Ed3fsUl1x?k__OVSG|)4vqL2DL`<5V^KqHI%}hhnc_6 zu8&vjzBnxJ1RZ?&Q6eAIH8`)wp7L2M`KTP+&_I%tdcWmfrsirM($NL}+mH)^LY$Ka zZWtBzt}uGks1mPSptoezo=P41OJ1p&JTaanglbD@t%g% zzSB^K@OYlN6W%FV8NK&4Y#PDhr-Ai-L}mI*&bBq4&Ta?KRLaqZDcNqp`!4BgrEv;- zPO{0qH{0pD{TXFqx}u9A<>asLdGu|-WlD1iG%9Gijb&u0Kq%ekGk6qOngoi+rUG~H zK~;E-+ys1C^k<3UfrvbA03{k zRE61z{rz1+DCQmcaqP;x@{EWPAj&5Nz35r4Hvl1yX0c{ zP5WgxWE3PbLpL6PBdEdf`duO`wXnqEP$Ni2A;cNCK|e|{Nfqp5$&|5)a>Dc%J(xlhD&16VJ@+wmVa#|xsmN+(8~>inZd7RH0v_+ z3NaWl|S%NXdn1@mrNj4XrUaBDR6UFO@G8_qD=Iv&14oWiJl2sUjZw?Mc#|)l;Dv%zR=x47 zSi-r@@E^3;1N8jf325KuS}S}%lIarwZb`8?DFCEm+gYlVvA+`2L;mDbWQ9#M%5epC zSwNpjL0;phX>{JdFI2$jQi-OZQiv%=laCAl@u}jnElEL(A$FqL9q_@IOw{Z&K2Q9I zpMhNik+O2u|;@log$^-;MJ-zP5SVe4}R*)5Y>S5 zimT}O6{C)3d{cBt1n{81#cz@KveB#gS`L`tfX$$?NweBpd8mB)@1Mp(&&Ef$|He zGhboML^mt^EEsxNQ6S6fd|q`4 zW$^s+Pp7pRLtnHq@S49|N0F<#}kWsi$Vz|de5F%F6omw6&y zf4@EHi3~G>xIxK-k>*OuX79YS1Y1ZBLTk2o#VyU_c}v-g9$>lSXt&07&8b%K9*v2| zTE<_&c*BHsmC3{|-&5He5((b$e5Do0xq7nB3f^_-zM4%ucvUtCQy_@InlmSQft8fW z8&XkB+dCzpI+w`19T(e+9~W5?>=Qpo)Jt>x1qik*s-418QfMzVj$+hXnGTa81)K@v zCs9K5%94rC#VB&&c((+=+9lg)8Hf}k=^?(S3S!8;T;oEo^#0+Avf~&8)f{`5>gz=O zBAA^-uDgzv2LEw+$u~Njp-IzU#;KN8-U!cI>}Tp6hu)!z8SYbzxwWSTa8N`a99e)y z(CMH*@^Hg$(#HqX!V8bTFIPuCf6c0iY+>V_X1sy^NP6r0N8;9xaa&?6UQ5-q)Y+_%`za1}yJkP1q##^DTMN6Pb{K*>|hjll+l0{8} znQTauXxyq(3+?4o)C}+Yi{C%qUh=cDP|zeRB-?C-EEmgR0(U7_@?$DGc@`SKsMqjb zifd*3Jml8^#Ju(XD#Z10aNDcIb2A&eSQ_8FLy_R&Bl-8RDHo-MU9Gfo^&7^x^u9<2 znjrni1JF@40$ELvKcG*Co|iL8>pB^%j3Gx7mKvmEnUory+s&FhodIVBf3%0jEvQfC zi3prncWLQvC5uC+&l|G<)c?QOCT3G{d`zzBoh3WX{ zu&wzikFQ;G)&&7`JvYsCZRNS=F~Xr^sJR|S&JOqtkHxz9>QRbCXp*I+-k9&-%Xb?q zR^Bs9S?vxsxNLs?WvB@}+|hW2FEy4SCYXgEd^q1Gvoum}Sk3pyW;AdfPBvBi8QVfO zWd2ls(MhZg-(=fGeznmksNz@F8Jv2b!vb6KpRuQDjG!3vF=pWg*_s$cYpRvcgTDP9P(#HT_6JCV5QQGbZL9%6u9+ROa;M#oTRxNa*NX%rT>8y zLm3O|Cn#79l}p?2U1_N_o)#%O3HYw)O8Iu!DH$!j2~Tlv5cbXITfSIdi!`BR#^6^i z9MT184UYL0X$9!cL{{I6us_(gsOnJAUf|#6i8$k>x7*LjtGLWDK!%j$sZD71GrkI} zN)9}67FEd<>>6t{`BoBXWta-G1uq!a9ii;a*5;QfzMI+=a4mXl$pri4G=dab_uzLh z+BQQ25XMRo%bR0~f<(P=^+XefJ*jT*vkkoh!xl&5(^`?z0DXBai?D_CVMSy*0ES`(bk*b$26DkwKu))NXZY2=ZpBih_?h8z$!wPvDyG6{ z95|zD7k0K-0uFPM?M!g6&-Tq2T1_KVzq3Bd((^8OdO_K(_@eYvMb#7a(Gsnx8toua zaiCGvpjH=b5cy6+31|B&?XoD!%8?b*t!$;5!qoa)CRHAp5z(_swZF>Nft8{34D_XV+&5H+DP0IyxkhTtS-X3%T{a42)q8XQXPh%439$kO%MG9%g&uCv zL!{J>KB+_ZUisW)K8aOPm!s1ps~7W^8AU4QQL*4zaz=7>X7D(FA^B0^e*wT|_mA}C zu;2(vlZ+VmiZHNJ-UEUlO9c^zr&wXSr~nz(w4$MXhmI%cSAM0w7YPEDcx2-zo9v@d zFc#U+vok;qqeI?7`&z9P>*az7f<)SM46+yJ`phXO&qs0Dyy=~2i>SxGk20X$* zV02h1#JjE(+l8=I*xVO%V?{Cwr-Aw*J>Vt9aB$;&pQ|$#;hgq}wn$~kN+pU;MwS*{ z54*4xNs5gA<(Tg$5l<=RI~|5jxHEFz?Rag1&ZL75Q3m~`p-(1PZb*idra;sf7{WKG z)z{Oc3~aUXMPdFvf6-Q34j!U#s-vI91a#-CP21mr(Wl(>oFO~KhH5N9ddbOdk)+wu z_~Z7fw0qB1StiUs!UyvV3xk^xrpk+h$LHSt*s4v1REQSFO#kVNrs z;7nICV3FH7A}Eoe>t~iE!}=kqG6`0e22XCUR}mx{r+0&0I~j*9~gP}A)Fwe zXDiInu8f0Rh0ammGrYJTR?6^5N~7OtQ3B~iKX5>r^H!Ncl)wO1tJuNFbR8Kkz8Dlo8n*{0w_* zTJwYZC-ak*0(NS@V&Eh|gHxsymlgHFqy3Y< zB1n9wlW0TQwnjD0Av3%RBBiRh(f%6PE=p2(^rl#0mL&_hN9O?0nqf=lFeXcn?n$M# zxr;(haEVz}OiNdmhDNb4xP=3-?Slpl0+Hg&govm!?$B8R6_IsJbV+)oTl&L*M5=-O z-Vj4UX{LK$dtm=5XMYG#$X1k)8b%$N0!kF4cDnP zAof3~M|9V;XyMz*n+}B|wS9qU|FpG$q!P$FeI~Zuok68p6-fFG@cNCx)N&F2?Sr6d z0CRDZrGYrZ^uW0z+5lq`^vqI5{>52#FWk-Td-40lkSf-MDqOEGlTEhG9)n0bLWU)& z+`xAFu96v#gXZK?)fJ4NE>j~7_DbCtUWj7Mi$H`(u0yBG_H49>Jnna55@UCj0HRPz zU0$D~9MW&Ut@$o9wyy_t42q=>ZE0SATLU;sDl*$? ziv2ltOkfGFawgY$6r>h7-K^2EMx=p|2coyt{l9;dT$3#OFqx8Tj+8-T{)KsnT3v8Gx-|M#rqJ7# z;_q9tN`5=n{z~Rs*}cRSENVpx-2biv#WU4&Wab7DfnMy>#~DLzPF)F;!M24}qT#fq z-whzd;SH9Zr8sdmsXI*2h|K@Yk5>RNi~ zgs(n>HuD8o#^^MDR?><=ScUCRk9lK_Cuz$>HuNgpZ@nl@XJP_+86mG#tS41G01iGv4+~NM)}0 z6Znxj1#wU;X~8$s4PYn@HNrI~>~UTde7R~Q_wouErSC3+^E zI5ZUm=`BTLWWm-(HvMws6DS{wjWbg-ZAn{Tr@0Z@j%Qi#4kj~HxGt{uXU7ipGgsCV0)+Nmgs-{(;4Ko$3W9n|i5WDx(Se!xmf zr0_sP`+bwA6m4s_UMWs_RAMxaI=9=pXTu(nlM=8 z*Qq>_k525fCLr8?xGHp65;Y{9$=TS=+b{~W{hSyQJ%SuebCz$gpWtyY=YvR=0k+e` z?QQ|ptq(GuY2d9Dg#x|>Cb}qW(6dTwV9N`W<7c?7bN^VpfE-RZ3A!x1aU8UQgwy1W z|AAS8vj;|**LtCzzC!5W3S&w6g9rO1D*ZVCCj<_=6O%c*Z#HW14@y-J1~&MB$6xEv z{P{j{1iI^E41$*f(7AS+VZHtz8q=~9G-VKj-?aBjb~m@^TD7Q%>+d8Lt* z&OhV&l=?CCW-<}mrWve++r|WVA|1AyXDG-~J0!l?Y?qNGdRth2Tv?t^Hm(GcH4Q3< zbIzMnnZGqNl4EOMBa&`!OW!qagOMB#(^UQKC=DpfE@ddZ%!Ihp(JAa58!#{gW1Q5s ztp3Swaaf*XDImi4_o8({+@FhfwWTa+@Mc;n zSPdL|ka!omsipTdRU(69^rV(=IPl@A&u%6QtP*v5TdOp>oC z>!!y1l_z{hs|}S4*Q|c|D>oaGAc#mN(0nn_R{BXfHrz9D&K-m3@7E!=X8T2i8=y_% zjh^Guvd@NDewY189w3 zXP2h53hgP9l^w*bO+9m72Nk{k>4wb#&lC3GvCjATP;(N#cO+-f-m-KTa}dwGH|2Qm z)^xg3QnLT+9+QTFKTM4@CbKD#z;?DuV}3X-Jy=*mYaveaTgTx-yGJ$Y@V4Yw(TBXXS{vfj@Y2>u9WOH&xnxxV3)T-X4uub}e7-M^>vi;d^282nzjQpA_htBT7s~Mi4yQ z4J0OPp#4zK0L4YUZJRWzc^m$nEVLVr)MS1}b_x>OsUJ66Gj_0r*G2vS)2tmiCK_&m4aR<6B>F&UcfdSkm$;Bd#4Y$^? zWh&+-9H?fj5oo$~NVRg*=CMA&mC!1Q^-;ENaeS)Fjh3s3jFEG;Ty31QU3uGk+;Pl#@Y9x2M{h?JtLx=597UFi)5F|*4j(&wYkqXzk^?1~NALKa z&-!S4LuKNYQKLoTrR2PIX-%D$&ad9D-8C8+F7ZGzARj+Yp4DZ>Fy>qv9=!~-0g)b{ zsSCFRg|8_cnhWib1JVaEw!Y=^=LH^}BSTB(*7{dH#MEW*>t(r}LJD^K7ktzjxddgM{$9^OAYy(a7VwRa zLGk!>*?MaJSp6TU3f~lDC=2CUxxQyR!U3SMw8kp~g#-J76oC(Uo{Cd?Hg`C`))(G& z$QA*(XDh+N--3wlG4LokHzekPXU+el&bS!Bip+n8HM)1Jn??S7eYtiXzeIuYPj?Es zA^pL=MB%f^zIHyhL=g>^pS28pCE#dOX9~3@?H*v0I%$eo`&8B~=y|9|Aymp#Hn~I* zg{SHF&lAn<;5^zQ zW8;;fT7zb?pJggJBoP#znMv~X_QDhUL1K>-*ju z@HtE$D}?=8t820waC0jZ%KUvz59Krrg)nn#6VY%h)Z5P0EJnsti1>zY#|v&mz9g_^ zk$4|N!mbQ>EDGI^6Ic~ggq2^9Ee9diA#-PKY8`a=q4i&|b=FGag{xGv1?oxJ^n$xy zr9CV+W&Kp&Ptk}2^Hk{6cd}A5ytG^E4iEz|$Hpe+?jIbGXPYJ?`%@_@McTGvwWH&nF)r?k0i6ZCi6OBk$BfpgHs&0aLV|o1KjV zijyfqo3U?2_lBibuV*|Wr~+HppYU{mAd{2TuiOEd=`FAvJisYQ&ky>mINg>?X&3M< zLHW$%{<~$TSdUiO+R27rcUkn;h+VUVE&OF$h3&(p3LTZyHKG{JW@!-EW+j5EM^YZ zGZu;j)slZ?4fs~TIdDRC;MZL|_Elb~CF$@-NyHwaG)BNWgWYgPQH^o)Rik!!5`ku$ z3kOT9MS|FuzOt~bO$GE~-^*ED?nM5?^nrXazloj6oUX5hJ0bypFSwcVy^Do*bKNFt z^gj#kEdKd1?AUR{|0f|U$FW^eUfrc}5<WLfV-!Nb8H;&AekgYUf+D&-BEu^^gD zVAI@Vzeo4ifoo3WdB(NRUzodMJD{GM>~MLO(T%U?m8+Y(7K%zM&A8wk7UCUgtf*x1 zg#XgFAZ=e8e~+yrvqE!(osG2hM;eBqYD|QxG>rQj^>DFje6r zyT@WY4&vqV?)}wUZGQeM5p&mg)rzf<32n8w1UNhSB!_UEmN^TlsICZUOc-qNoIxo) zv)N9p-U4l#k|uZIj0;BFzMJnCI9;t^DI(XUEj4x>W=rGmS(SrCm_V7` zTvUYFQ%Tgoh4Nni1LVgOzg>;I37D8vw=zA5G4#|V-MEYtu^T)J25;Qer|azPUj}bU8&7q^QI+Y zv;sq5?5j4WK4Vx_?J$beI!^rbb3}Zl_=9gP68bf0?Erp+!6=U>*BFv>BXZDE*Cvsa&56gw@?%(THj^yaGVfJ8ph%biWQ45AezD055bpym0ZBd~ z_iNV)CT|_6uC3?lE4w>NMq^w~vMXE#dIDg7NTy1*D$KIm29;mAP8O zWrxM4(t^&Qq(n`%ye}`%NVMJA^SuT>VUthT)pzY!pM3jyp6%V+q7*Ut#{K%F zlT_37*bVkDkW4_{XPOlYuFtd*{R_U!Jh@b>ayLr6c6z!xTF$u@JNL%XH?u<)1-_^a4NG0a=8EV0kk^;@BZF98Cy+rX|LG ziG};wp(Lv1Fl3kmy~X9=q8GVA$H}8A_0OKn|VH z-mp}*=6lR@a#U*^)Qjsa`>aS0qeDlR@^uN$G^*tb7C!06IN{{rj%t-A{pqZ4*I6I; zrNKu2U&e-qz)6|$KU-Z&GLlDxq^bF&$WVTYG?+2y-emRN#*YFa8xE^juXo8Ay`1E>F?Ktj;BL#OSobK1YnuxYVj% zLc~s1tTiR1PxsKgfaLzCC6BKEV)wh|>)f>5WOb$FfCt>2!hw&C0lei)QPAOdiU6HD zqs2EHr_YJWVP<($WRe_{Np$kQRgVCs&E~V4E8LKw@Xma4!^>g~aJxSn78q+mAHlLv zM9=B_T=BxAR>M3Ra{KcG&lzow%BA)}jTQA}pytx^tIHt8JBgIKL6~VXIb()pV*&${ z!U0K&X)eBJHLk*4JbcstK7AzNa~+G-fxAkZBp>iS1S0f~Tj z8YwwlK@W9H&!Ymx@Qb}qp?0;7{`d##QvHc&yK2bHEACtKn8a<}z1muE?B^Ka%A)U2 zLApzPAUfU7ZH4ME+ors{j|#U`+^_k5Iq>4jM5POFOm> zS-)Jq9$H+Qke2O+8HeKBA{2)9ypgM);YJ#%lcno6(mSZe8-?TDmR$-Pci9|nQb&cqmQ^TTm$EwL`P(C|>k z42M8NavPQA>;ZTNjx&aRp1;J(tnR7-+`xa?IUh-wX*2w%lF`Dgukw9_r`lu+;VNc~ ztgo-d$!gb1i~XXjJ-``7ngJ~k=aMqYI7+|CMJZo4Tm}WUolE8HOpQmHgXj*pe%1USYn{HyGtzOS4dn0GBC*n z!>;rc{o4FaCI!~)zxZ7r^V5Qw3DEa~Mb|(Cv-z5;LN5ZSR4|d!UwO3sHXx3MY}9oe zk3rd#?!w^-cdLFzOKFUYvXzy?0PL>FE3B}oIR98|(2H}B!kD7nw{DDJ%u)^!1bQ%m z?Ueea!l>?TmOUQMLhc7JdBsY}e^}Kv(x>AC6~@Vg=U3(B$`*VD(nbGR5*TAl0dIFp zv{J!TR=myc$nAfOT<0j`vpH)-Pa>>0+W`}2bCAF|5#^0 zMOR;Q;Aze^G9u*mH%-0@h2t;DVf=@^+5RGuTJLgGewViEoIOf(cvlV2UsCz+?a%Y+D|S5dNIB?1cj1icY( zO!H@zl?9_(3C8<=PtGZdSTQK!2W{<{tN@9NMm{+bfHhCoMZTEvLs`2@zCxcCyh0~l zLoF4vWBVq7;R0t3(=+87t`_!O7(2} zp~w7hAU-A)JmDjp^-p?Xpi`7h#V8Tg&&|6aa;UD-T@IWt9p+t&L-;Qev?%P#WudI< z9SZB297h1MNxSlaet!PsMjz;dk<| z#Lh6F13ib669I&JNa|u+tz0#4qH&ngZhwE@+ow^(i91|6iD1SEOlvxpzp4E0!SxH= z3UQpy-<>?g_bpX2KXax#z;C)rn{~R@P~fxq5C*dBljc&3`v@ywvTRJYnl3@~&pe>Q z9J5T;7_~JG1O1jNb@2R>cX59e+f;2g2BQ?;lwk%fHILK#3vQ=sQZwcUt|p&&Qe6F8 zoytF4W%{2#7;Cs4t#&Qvx_o`T14!cns5ozKIB6nC!*lah&zkWyEeyWc?{)nKT3dzo zD@t%`OnWF>w$-wfXLZ7*HOv-TT`V}L*&M1(NYByqM?L1ZEQr&O?uVx_*Z5 z$h*I?(BYAvAL0d4;&|PBBRX4*^BtF4oTywpE9Ch{8gXE4YPM;azS7G7m{yj6Q@+pH z5b0zhjm*y{-}3vV&JC|D?wk-jr29oL29h z=hzOv^1{WWWhc((5W+_*9rK4v%?Iw3G?k+%Olm#9LNQ4Old4iPSx{G!nBzr`1s%(L zHsb^)CbHhD1O#*?kuS@=l(k-TsZrT$UazyiI$WIo{f~O*0FdNO;z8GhWs}8PiKb~$ zg&u^K`?MoGINk|31BG@nEkv8|%_1m1guyz$NvhsmpIoD1NH2YH$kA_i2e~~t`<&!8 ztvd#;hm%gJY+lY+b$Ht;M3Va<6q&MOINC>y{LhBUlrlJup9UcQ4mo0t(Cg!`q(9r6 zUkf@H`Y9UZVY>fiB_dV?)1y%?H(8BuqTjyadLO*E__>^v>)R(X9@nt24`J6fm?Uhc zhgu71&Vk9-s!DcLGql`A^$y`~!EtA2p45?}tvZHA$r}gf7%L8IffeU@MyAGqvWRzd z7JE}Yy5+CQOq3=Aj+Dvx0&oPvoE=RyvDxV@N$Es<*+Ji-cZ7dv*kCddIQgH#u5WP+ z3W2TqC({7;r-9aXv#aISA=gj$-s7!sQWHrwO6uoZTN)+r*j3jreTwe@GA;A82yl(| zmQ`QOBr3mY`k5DqeB8T3*80xm^Mr2&5>H$-_uYt=!?}?k^NW^XS;0fDEXxYP_nlL^ zmVat7MdpA42uA$1B#P!Euk(u!L+Kx>t}Xc7oLoQvYl5;c9D?O z#Yc0D`h?iIJ6V|1RPUwVt`HX47Q-6}>a8$LAy$FDmh0WSkJ9h9B0KsmT`w*(y6y8f zuXXiYb9>7)B5lnu?jDYrLv@+WftHUj@2Ri(Gl1Ip5+eQiW8P?ZFjqY(htY37nt}!y z_N1#Y`jIJa@l!73dLePHTCjb_j!i%gTJ#D$Qsa`2d3-sH{hUJC;4$#Q3uWDbud3q0?LW zhxMo8Pn|~*RKNdJjgZo!=dljXurW85G+ERkzj*_cFQA{T#!0T7;Mn$CK%aEL?GbZ} z8*mm4Q$~(*GM1EV@6fRT=xe$2?|yZ|+j-dAv8OYH{Nc!b`$C}I zneySfFEsg7VBxC$e#dF+EJIqonzf;xlP{}XId|Fa-?|Q(@tCUi^*#G0BEY1V@CLNL zz~!;8<+OTA;1E%x;-q6?J;TE7koKa90u%P!#2yRnd$}6bXa8GQPp0y*an2lNK7_2x zH?ix)haBRL=EyA(0&&rJY>9L`oA?|-di?MdHSxB^AM#WIzkq!!NKHUu*bER%jB`ht zur7xdaP)KJWBAJ(Xcxmu5tn!OCz75l>#;rvUCOU->QGPQ}2dX9|*2 zd$Sm?<+V_Ea@CDhr<=7kkbIi~VKOI%akFrHk}mg+C~?9>(%y8r2&6ypqBRkbZ+jGL zz)|05=bREw>iqQR@4vQ^5fi4!jz|aMZ&Ns z(}#n=q%W-LK_B!gEbx=M@E zToY>%i5z<|X?Arvxjl@& zkYvd*D+C=q5mL@&n8Ie<^telaTYIXTV+^y<6bCM(=^3p^_9p(uiUlHg(InNNl=QR) zJYXu@emv9|U%W;d|BenENrT10u&CvDLa&phZjLwOMI6HwD4zJUly}`QZnB&{D@5_? zFhP=-MtQ>l3g3;RRw%IMf8JXx7qicAztFpJWwwlill|A1Gmg-)N^#(|udzCfW4-iT zAf3}&C3Pyi(00N8)qM3NGxX3GWh zLP(fizn0nkj*6&Dd9)3gQDnpPg!mOKC{UR3jQSNcK+=kvdbgamS&&;BaTTBCHnN$J zKzyr7gkd@iWu(S<*_u>s#u&Erri!kd=}3H}`CLtQRMbunDkCq9N1QAZ?IRTx7A%?T zE=*oh$4FqJMp^hceq8@Ktbx12m^?LwQb%a`BXfH^gR0STl)xz@0aGgnkBnOl8xYXs zeQMvl7f{@MtO4puJ(az5r|2|Hq8r_`2u<$G;{fHahNrSQEz04w1&=3&oK>#{{ZrTZGW7Kc3E!rXX7wPi zA>*DQEo}>fDP;$tys~$ckYP%Y)H~mQJqKvY9$(_^!kx>O zJ=46 zk#zCQcX1zcWsA>$S_w(8uJgq7P#+o5RE&q`@)NC>pLO4{U#E+|5q7Wex!rzA1C`Ed ze}1|0qasgDk^B2-W@s!xLks2aP#ES!e{*uQ=L4^y!^g8_U6@3Itw7)JJ z0S;as1B2+AGn;q2ZoP@3DXZ-OO;fO`gu@aqXHMwTn|{e(`C|34$NQNUETO6QlIBv) z@-rQr4+J^EmC~woVY$iR{^hZ%K5Fl8FNX!+MRJHDn?${ixD(ozR8N*tep%&@vtRflq|s>bQ&Q^0ni7 zpCFkDs%Sr1FLJ=D&u*3yN84bo+msOHdV_*6Iwp^W?l<%J_zZW}w++b&^=YPs+rDsRuJ88YNFE8^^$kaKLF`&tbngs8- zNRG1*jR+<>Jh(eCTAgY54ZQqZX`8wC$_yctM{O&mn6oEw-6ZurAc@6ExFI<=xh(S-Sna zAa2V?D1$V{zm1Cx^zo4~W>3WBV}|il2vC|8So+{L2~^W6 zczrXx#<@ z+KI3k51qx$p(mc|&pI~@p)z&oTeIJ}rFi(d_ z^skQ2<3B!Ncw}L+5%c6a*u%WggOAZ$t~tkh*E-(!g|?#;GJ3lZ0JQ5OTM>2ar~ZRy*6y8zx;GQR!# z6h@VOR!i=5@Rz~Bn=Xs{_g?#+6$=8nWJ5#bHw^671sgwzFaA7tO_sBo*N~^+>r3sv z=l<$%?h?qk`@^tqEk*Fn9xaVdl`&}H+X9*k4HFt^lUH(W-h$EKBx4E$Bi)LD5eFTY z5UjH)F82NLTStKcfr5gDi@~dsB(^+ft*_&|A5_vkUmOqOsc<;U@zjdpgU(iYl56@i zYnv#Q^?_oW&DU4tbo?PL012;QRrN zj_C<`Tl9lJw?bp^j4UCow>n8bpH;g(va^dd)7%~_tqU)T2CT0RMK6(tVFZl{DcR_c zaPZR?cGr-1!j^wFM>cQ?(FUsPyTLxb^hWk?w^d~>Fe9O}RoWgE#%?N@Lm$HIG6J_& z*Bncsa#>uiTO)1KqIcVYCanQ?SH3e3KQ%*F)P%N)zLD#3)c|K$5XZm=ov2DI$aLUq zJOOn58WQurFt{*j3!(cO8}~#O4}vkisbhF zmk2Nl3JN|A#X3V2MnZRZO=5nc!Y$Sb4SKtRFHB1JHs$1(AbzTMNiYlPW%;P3$&>91 z_m3H0z>!UyAUo=Lqi3(*Qd-4YDEBL!XdB~?wUex;HXD8Q40`>!d?Wz+H1YPEH$-$D z-MGV3>?`mh5T{DyT{ognTV4-*D;WlBKw9H_hlP<(2N*J z&U{Wc7amPvDM^ zdcu`8ab~h%zz?q2#Aw89Po@L@chpj>7k}e(JBHRvSz&{pK#|aDrNfKK=Yq_q%P6Xn z-wPDj5C?o80kK!5k)K0Rew;01%fI!(8h<@I#vfUgQNU*PBdCW0 z_2<*DifpGk)Q_U|LaIj$LEy#VX3S$Z!%3-}}U)`j7UV)j7Odmct(m&$3 zqL@$`=_9ReMXIJ|z`{=r{evkTwm_bwY=l7_nf-O+gx)feqM7{)iPg;KjX94eIhpy) z10W+hm`qGlR}gr4nb&6jc*5iHgg4aSUf}n93+ST|fg{E^{81dwpN1w*Oz|B@*GA~S`OEq7NuZ13GiUl^4TJP#WjqX^DlEd`s&ips2pXiY-er1LjM_bvOz5vKUq)3^GAEu z9cWYoX2MDvPi6ciy$0>!!kMXA_3yvEpWqH4@HcAYh{dt*8PLEc={JteBR-LM!W)>H$rXoAWigWAG3(mnVN7J=HF3GO3%)lGSi@GB;OifU z|NC1K9HW7*SwG!*%#8vLDa56&V5kyij7_iEss7UGMtQSziBUY1H{~04HW6X)!DZH(GKT0qz7&LBbx98_ ziO$B{$e=E=k#n!=KFVa~uhTI0P%g4M5?8k_C=$6VfeC6(V)jNIoq^F1|; zq&Yy0(InVbBNy-dkq!=DOO+DwmqdoaP#WWa&Cj)k`AR&=k9!H1aQx;SmVLKCCbXw= zb0+-9{MGtz{gS1VC3}a24HbNu-mdB6HA6VpO$>P;KGtExe|`YsgInR2)a%P*u3lm# z$7R&(4E36P5Qhx`9#(56bI~PsRfv3XKqeiK)G67y&i&H!bm8wmMzj>DhmMpZ z9glLK!r4aEXt~Fr9ML97_Dqsl>||b!J~m=PaK@EVi|IaxU{*9XI(Add7&*GQ-F+pO zd%%qHt5uFrjm5_3o$Qnx@3EOlQcyFx3=PWe(#ZtHG<#pej$_C~t!&xqzf&Yj;>1pl zk9Z@*i4&D&~1 zfH-8-T3tzMfhu(X~cR%NU&56aD z$%w%t_RTx5rg{pe&$_~1ktTyjG+Iy{X(n(=b40VuP>!#))FX^CC4wRSikM`ngf5>|o-m@GG#QD9bW0Lz-+NW6Wa`=8J!*`Os)2U@Uly68e@l zpSfnZKwceoqPubPnEwJPIoT@0(*~s=O^e1Iie&njp(u2~s%XG!KOKZdVJ@COruwST z1W)Reu1X(--jT(S`VX4KqO9Dw$8)D{x1oq(?JeM(sQT-=QtRYD0ur{?0M65|w~=>> z#Z?JEQm|lJVUkvOBJVSW=IJu|+qCB`mCwA27xhgay`s8No_L2V?AyWcjrp3xYmpa~q zm*aj!p8-1DX?YWAgIpu>=kZ>3Q2GGNR*hQzgpH23oDP?}-$eR|88DC&I7pus)FI*Y;9bk&p)qv+)DPJ(9%#YG|aaYt0H{nYA*1n%sfF&&c{T>YTZsCbSNkVMnzcOS##>{ruENY?Ln> ze6{ShBHm_BMy*7%oSw?N<>u+$1I=b&4B+tot+q|sX?__vQ9bV49KD5&&MeenViqR} zKarscpE(;54$yQMTR>Yx z+#6eOV0O(1<^(d&sBR z&l~u>lroMk=LYODzT3H$v!RDxI0n-)``^mBjdAo?uij z-{+#Ik{|PLzHV$+GzkgPJ6!E4u$c(YA28-M{q0v9M>Ff8th}<>4V}z z@~~4nXm0(cl46*6d*X+kSJGnaCrbImu7^K9)R~5c-u0@5NSgu4!57En&!Wf7h1Ij3 zPuaEdFd7coQw_{uVkO@6NO}tnEum_o(4-j~p=N~8_;G1BGHGrmn%oK9N}|K*ptK~K z>8{6B)U43vx~mTMN@WBWYNB4i8v)h#_7+=zy2kZr9!)jdSUW#u$Y|{EnA|4D@r&bd zL||)L;h~$`fBlzYTzp5LzM3^L5{Z?g>T6~q3z#A^X$u+Ad4jCAjXnmZ`ntUZ@}bhZ zm7}qjm7xfVp8b|hwnl*GXY~%MvKfrEwZ;lQdYlIu02hDFdyQS-#S=Zmz zid10{zY(2|EzKO4B(-o{wwFi~odYommp!c)!+A$tl0;*+|L{IpZuYAaR~9Wr4`0Z1 zu3jbHH}ARd#lMc3v+?}UU>mP@l~JCuPSe_Y*@wRxzMaD-hbb=#k4YV|x8<%2`H!dd zfLKK3zCN$8DdDka0ifWQKL~A*o7gUr-@1idUmP9bj$Ch=7%q1M4WMGxt?}?&qUvlg zC!)h6lbq1b#|_>6T+1;E4u|<1xEckj-4;&bdr8YjCuI$zSI&UPd=oM|BXpvUI~fO` zWet5$zup@ZKKnD}2V+5d4N}JGSe3T^1zUdflrtT^0!&(quZ@gT^l<*Pw0o`TgHewl zRTf;E$5BV}T{+YN?58np@v60!O+XBnhX5M-A4^z*Hij7e_SZpFN>qOqhl9%o_wff1 zpfGE1%I3YU76EgGOC^H~nTg^Pt#vx9=vQcSbICLlu1C8ws0_K6&CFFApF@<5-JNH1H zU(XCWyYJ4G4f%9Rw^(ucT7aAi0s7B3>J=I_hQc!#;drOua&_5_NEoB_Jnq(C ze&pG)5vTr&(#?)Wd5N{yA7)D5V6!ZmL&W(|qeMlFze0 z;d}zD42-VYU4^*63;hP7_x@#Zy^dkvW5Bn^b3>@280PCE^YEAvk66@QR{p3^vbHGC z@LO!nWQXVB6OO~{)SI`@$^C&#;ue*SAzt~hL*WV#fR00TbZ>*zt2{+xG(9uoSzDx( z8qnH3IFW52lLZm|1PbTRqja4s&MSAO|74XCdw!H8d3*FzVeci%!gJL=kIp{TXph^t zAPrrICEU@fkw9;;fVeYvZmz0YVyl>r0M~T(`w6?!nWe&K=S>eEUZtPd>pTS#k$#2C zTrV2ilvcW4M;C;muS=!qoZcl2KWNHmiL>U)1C+TPz|;L`KA<#|U}9VuLk!mVp)$*aC1fwwK+t*@Iu?pI}4x5o2 zF0>H&m@cuyq~(>KxFAWqOv1zt6|;qQB8 zgtOTozsDe@y19oVxC$^Xw`ASq!;Nd106d(wP(r5Mj1;b_z*9{IeX;E4yHSY9bDEb9 zfp{li2Lbc1!B)A)Y-P3_l7no?FRoqysp zC|4cCe}cjRb8H$}(#nayo7dM|2U6WHiI06zERO?@pHbIzC3pLG0_xSGIqS-hx=X~< z1(PXM2%Id$mo|JOykuyqhN&M=iRE@9FGlSt#0l#N`Ol5|>#Xb8pO#4PD=j_q5IAvj z#CR>(IEUPEoGDkEs{HU%Frn3dd`Cd6nf{7v8bJLpGH8=?iU~h8d|2{%+3@ebfu+!v zDJxTFX*LqOx|s=5T15OXK|}JKD7%ASBGQtK^x~k}AE)`YJt54Fb1r41wE~_0(Y%;r zGQvY?;}Yw($F6ctZu@Dn()0>`+m-Jxscd=q9@D|kp-9xea^|orDe4&CO$Xi>>Qshl z6im+SR(6^@ol-36Zh1N2zFmAHUxERxV*gt#LebUI{yQ%i{q=9!_FRP2su>52QcFfvACeL)Y z9;*4`-fe`;^9lU~2&!a>*>fZmtgk4eskreuxC8!6s|Uxz1b=91%MX6!7Py)xDP&b0 zc(s_D;2S?`C{r5ph`BxhB`my@)1_9V6`zGutMIXuT`MOmdlL@JzL5__nFML}R}b-f z3T;B!|AtxoAOmY3vZ6=jmVt~$(UD~W#%I$X26TARYE(lXUz4b7DU2xcCl!pK3BpZ7!O)bUN{5I=w7C)O z*JjukDzTRLW%Mf;6=shFvt2zd)7;aZEFJCV9qE6P>M;@VD_~Uem+}M}+*Lg%zm12W z&uLgL>cXZ>;0%;KxVPOg<~Dj9vgwtKvmj>A$X>O2q+1C)R4;m~mhpD=t)vf1VQbeE zWbLR_$Hw}N!Q#E>4(4VeS#+7xY zQBpE#;}GFJW+boJ96WQ}3{@QyPwd-ebpG(Rk_+RROhzDUqqyp_& zjNZ+xL?yTn2agVAR9oMY5c8-~?P#Z{ZV4U6<3#+JDT-zn#nKbi@w+!3<5FoYa2Z3-?QJo3{qcO`N?TwLP2HDX#91@C zK+;{LSVi@AS|P~d_V};@cPRX$VN0os{ZzmvY~2}qYs0KHW3s>I7=w~()~3*RH_h;p zpCcNd1!im4zJm*;DJAL5aii^rAdH!}3nXc62VJ&&NRQvFU~bkipgA)-UYP z+gaVvTkS*742j^%B1a8A*uCf*5m&R_(R1WE=Lq(Z%p!LI%YK!ZyXPv)jwvXadS(a(v2k} zepj?91lc4Pqb(G5;nNJPJ0~^?JlV@CtoDyKKW3+oc$EQT3ErYG81UX2!0;Dm=Aa?q zNR-xN!X79S1dXVcD{BXz&uB1e62es7m3rtFbiTTL$E)t*IqAni@ZVgXY|2r)h(8YY zQF4W`3A~{^R{}wONR(hGmVcsN=>4*?HkH2#AJ!sDT-L#fclowWvT|0)kh5}+gPU#0 z3j_nZ?Oa^!FP-TVMA=9tf-Mjk&kCa>vcQGWI5NUCqmoObMIXu1a0R_s1DGANy+3)6 z*ki`MKdtFzXd^a~JYYTwiVp@dnzCbF(FM2sOX= z!oQjY@mNyt_Udu<7AaH2NK_A)1Q;Q=W~nT!4mNVaA_00wKQ@^xoJ`3m^xQ^S8$Gs3 z3(Wt*6X9xp1kpo`BRC9ua{C7S+4t4~kDgXdo#mN-6HD zQk94=4$nG6mWvUMVv;gnEc!I7-t`K7=$qo=SEENX1?3pWLpy%Fonkp>x6KiE!rFZ` zoYdB4pz)c_qlpF{;rLwC!}2{l-yK$6Qr>W?j_Aj2dcfAF%1WW4jJ!*K*T9GJ8m1Uj zQR;Jha|EMx_{6`3*t>t*v3qtp4RNjvK(j7dKuVbtGaZD5Fnuqz3_ z4>l{J!3+KPBL`&R9kbjPJDKlsmYAB~Ca$f!i(4Mu6*>6grhE*9E+`x(ri>b(ig$*u zWe>qa=xFnGlQR9(7^E{|XL1gw)XJ5{2P)EW-$bU9jMm^o1m`TSoE_{b$c**izKLso zK9+Ft$WGCHz3RVUlervnTyzX?MhfLsHRWc+^LTjqT#5b*hU`U21%&MKk+WHcqNZD? zzJeM}kkKy(eObN9Co(0xVc#l{pj5PT|1t-$zQ)=s@_C_yKFxP;)f(fUU*a-wt}VCj z3x4VPkH!bVY!cvE=Fj=bCM7GYTC+6i?U%i-g$Z=JW7!ZM($x(fnbn3O&(6vo(2P0r znRVz5yCcouu)z@YF@pcsjM?mMv$XHyP%9JBll-|QKq$&Yh!SR5Zfrmin@GjYb{gpI z$4Bdk3a{SWZbnU{^9Z|G47&J)y#nIlz&y`*jA5*)igEI((L)C?JXJag2hIXmYDcMIwqxMT7y7nOEPY%BJrJJW%4}>yud8V0ZENd8nW0Iz*By z4%Gcn7MP6F9>?95h~kiW0o}(oxbe?UAoQ!4W`pK{AmU4ZCXFH4NXwl40@Yf;VTqeD zxZ|071d7^2qsM*7xRkd<{8L<2LEPa46A5{n8I}ax zKPN)|JK3$s&MQB$yH$!hcI7)hvVEzC8tc5r>8Ca>MXKU5zaQ^w&fC0 z_X+;()z+>gM-|}rT_9l)<(cD~uEF1QoGO$mj)@Y0b~tUVz}MezboicXX=&&_BEXVlPVwkpj5@*`AFcYKR;-DR<{h|m(*m3}|jB^1Uy-PI3kB?TSLKw?qMR~qb^k2jLMkeAfE3F@+1NY? zfiA^jbK{Fh>&`4yj$+npY1lvfiTB4Dc>y9&gFjTYNWA6<^TZ(G^E=aD)iQi{&~qD*v^}%6@U}FuiKav--vjB zQdjJ)FiiZYNyws4+)(e+*EMad&5?B1y0rf4x}Fl9CF)fACr?Xm$zW_Qs>B}JO4NC* z9ihe_31kw+vc*b&EiY`psw0xqkQ!!-;j+u~3NR|=|P7kd> zV(5W5k=o&N%IHbsL8mj)<=0YH&p_5(lvgV_zyy*6BZ)ki6AvzUYhUJ|lsR;6x^(rR zkv~STAlAJm|5PN6u3z&o=QJO%b40T9L7U;3{(ZU74MMk)oTD%Lr-j==eldmiZ;ptB zSHPJTPq18eUCsUuXc>L?8)c^&rG%TV*ewv+-$dhpB@mn+oz91zi&j4-g0_-El~o(h zH5SVwoMV_Xzo0z@;D7zxJ`zJ37M9-eVA!cZBCw4Noz`>Tln+auMPK#!q4h<WFD`Wdcr4bh~bt z%yT%m+6Aqy`oV(X7a@o47t_C|XT#b7IqO?upt6Wsl(Ng7?2p9_hfTKUI8>QMj>orz z`r8?=hCW!i2~kLjB#qCbX|Oq-4aW&t@aaP?G`oxm+#2+uYLNxo8TC3TN5FOzakZ&S zL28`DJ7>3KR#hHoPjF;U()0A$PBd0-@Dk^zl%y(U<^l8dmCMjI!5oHP&U2SJ+O@qgy?qBkR%bHcH-&X1u?X|?QbKX@!4cI*Xg%T#L10T4fCwA3 z7E_?1zM>3~rEdK~A6#1nI`;@%Rgq`Zg7TpEm-`~b|hd+ zq(V^tN5d}I5x^x*a^ab4Bj=3&X(n^V=}n3_V{EzPZz|JA_wL;v`jTEMHik%Pyc|09K-Fy?LY$mTfz>$wlPi(pFxUI7R`S-( zk+Hta*@qPRCp$Oo3cLq2e;(6+$fNxYIv;Qn`3wl#B#2Wal|fLmYU41) zyt)SGa;vFK(DIbs`_wy{dKeR=t4rCerB@U9UcmedyufNoGP}W3X^J{%(P9%V!~``3 z8#XwiWv~(-*E{3xX7J~ih9Mc>ebk+O(>U(Q;=OC}wKpq<#%luo;XI}s`J5`6c_jZV zc=9QI)w}f{$YIJ|d5)Tw?8kDMIIRIdrtqSx#dA{As$_0qG<78HybFjUwuAe*ZLNKD zLT`xBa&|itrK4*B^mzx1f6$q7%d}R0Ubt(OtlBcPyXY0aX}PVEpuQzboiEzr^hk@c z%|1>tt&ZdzUW!(0Heu<+buMub&n88vFkRyZ#w-|LgKD2Xu?v&Z_jiX8+ufuYFaM^n zDulH>`l3TIF_ls92LplB8+qEF zI>nh-ot|gg7@@=FeFi&S5{4%m`2oBE+47jUk5(SFT-iAhj_l^ThGjgPA*vM3teT9x zlV^MVpY>8;UyGA~ksE4tFQWiC3C^Tf(N)%NVi2^W`VJYULMMnP(su6{g&5>ms2RI02NRJM1%jwpKLozgAurf{#F)w3}9jvIT~2 zmAsL)`)@3D)flp%)*j=JR%i@WbllCRf6$gMzd2jc{}8r0@(2wJoEq|f5CM5>uR%^ z9AA{PDjC)^Q(cKIbgdzK<;7(;m0}QH*ARf!bP=er-GG%S&wxf7XA6!&j%Rce9Qsd5 zqEb-Lysh6$lAzdBh)792id{kni_hI4h+3$uMGlff;^+;HfaP2T3rc-QM_1m>S&h@C zg#3#Kg!_D6A%l5=dXBH$L2^j_8^9C5{s#ewhSzg5UYY{&!0$Gv;YIQIEYwknazxmk z>($)PK7(Cj*8nLJPgz{_*u4)){}22Rtz-Z6l+6qs`dg++jP1~UYa+-mPJhN ziFx|)*u$QE{f-kOnHQtAH8!87sVY%ycd>!0f&$O7baoHzpAFbP0Ke4m^@yV5k-m3#9SJGP>M8(zos>8gduG2Em zA$IPDF{O*M1|Mh+#u8uI6IaO5UC5Z(h5Bzj@Nkxp6NKH#AQC_MY>j4=AyjX1-ANgj zrnb6ZKbUM5K+q90MA1hekTrb(!eSc?r+JV0s-KdI5fRl?7SZEPN-1rEM zbG^s-!Eg}_+-8r3&K!yBrJ~i7eUL^9osZ^s5)R{({vbMw+y8!4&9*=cdEWME%aF;zYdaZ+q&-t{x-`WPqok!!4mYL8}O z{UYg#ey-gR*HUYG6C7>|KHyQ2>{cRv<$`Hsz6~Z07CmjnM)H zNV7$YSR@$0=)#KL0DJ*sv9hW_qd$6f{}p!7tttN~`+={VAh%1JHIw>k*mBP_m~HZV zLlEHyO2_c@ZUlvjPu5uVZ}og#jN==4o;7UTe%CK5+VxA`1`4T3axa#ph5BSyg#c3L z;*O^Qe>);2TvU?Sg|8@i0~(rrB8d+9&e{Dl2-g3MyxtIqsle*&jIkzoI=oCOV=c4r zklg^r&r^VM7GP?d@dJIB9<}^LG7DcIbe&Yo!6k%Ut>d0Ya@$*D&SjUPCqQBB#U~IP zJ03Ml+BcbV8;x`z?~`$zVj8VwZkK~8mVF}rk;&5&nH__45jkwS9e%-OJPe>McxvC| z`SKo(lgcv+1KHE|437WUBOY63jYCtiZ@n`qcH!VFF#Xj#L@Y7wr%5bMzW1Cx)!z)t z3}YGvfZFSHCY#1f82eEtty?I062p-3rm?SGJs;ko7)8X+d3r8)f4Nz_r+-KYqhtxe z&dvrAsR?N5(#=|p+Z=2zZ1>9OK(WM%(Ye+Dn{!ZJ;N_TR3xz%ny4|DigPRCM)f z?s$H=2-l8}UybN$m%bhb4ATkioKyo%buamY1W!O_U#Q6?T+~NX_%BcAf#cK`RsZ`u;I6a!45g_DBzF7_6og>kPD~dAx5f%01AhX_>m=Ys zhZGyGy}G8mI38hn^`-lY3s=Yle07?)U}9pTaU zq7YfxLeBd1T{2&7{n2BP4cmbin=nZzfSRb$@>fI*VFRdv#^_%V?}Q1w8EJCeSE->U zJRqW+Jgmh|fTuIInD2Ws#a;~6xAz3h@-~hO6Kd`ZRYo$yII$O+vYnk zRr``v3IO7_H3@B418T^$Wvu>Lc&m}w%;7%)`)*fFb_f7v7@ER~oZG7F2NAVAyZF5@ z{pIa8r`Tma{96jZGcFmk_PdHU^W5F$$c9V4Rfrf5zu8x6sPFt71Bv4bpXech*4lHwWfauG)qc2KZ z55XN(h>AER2Q>R3ztr4?0>DkV>27NeJ)bA65x^uR*jMplUfmrIp zw+*29fHG35ach8o2}M3p((lyNlT<=N6F2_teD}{=>*^QM+qSE$&%H|yjEcZ%fj@K3 z&U$91?68Sp5(v-+hWPFh(ub&>>2m#b{VxY^gZKZZg$esc8GI>4NiOx%H{GhNNieEKpBantDDh>G(?02w|t;peYKhLda+C12IU| zL-u#=_xU~!Tf7=r&e7Ck#y&Vr6H@g2C%z9EqMS^j^n zP_>aGWliEeGZ_zgXF?64@hVopjdU>YIzBWZ z#CUvf)fLdNFnaP4IFv%oRzls}fcW!CC%{MXuLOwLxw?2Bj0m>(oYJI*`EGNY4iZFF zH4VNC$QmhXXCEwf2e+bMN18!Mum*MDuh1)NSD`E!sAnKqRferDXY-31e%6e?!n+kD z|28lxr!=w~TmW)z`>shZeXoJ=;3M&>*Q1F?iY(dviXkmmr<9n*(I7#@&=3H6?w+=y z^(S*J@_!S2_h+H!fiS~{*GrEA#sE!cd`Sd6q1q~wPy1;SBeO|!lTBJ&0M4k?!V4lS zLcDp##$Q(*Io!C7PKPUp$M^q}9=!TC3X3*Ubu+M(}N zkWLZSLrKq*fET<;1DC{!hS|U15S;oYtVroRH6L;fACrWNH2tXclG5mk4g%h!tp7kv z2m&EonHcj&apYggS5n=WM88%-hL5^}tL6-K+^B-xdRdulwO9`(Lfd)^1E=N82q40- z2Kvd8)&~Jyp%bFRCz5IDmpr&rCx)=ww~mVk*5CERSkc8#U0r`lL&vKPd4k@-#&X^@ z)z^1CFXM?$QvUCl`FlwOIhzMk6h~iwI&@7T>Ji%EgJtUDx^=vW%}j#usbABMPlro! z=>J<9S!l04bt;Q?v6Hnt{xhQy-)TKHmXQ93ha*l{LIRC5|NBo^&>+kY5(Cdu=B*lm z8?#!BR9H69Ogf8r%0GqCrzN^jo*99dn@W1FEgRlYWtg5e4@&dhcu&dw^oOX@&Csle zPwYZTgKx3z8Ww)rR?J+w;ys}*k#-c8KqL8~MfzUZC7X9WQH6)U(ug4(mAmk7&zYt! zLVCRRRc!@xe_EFH(5T&BFed+gmnZqrw8q5xrF79+bpN{G=TO|E)}}6j7=rD1car`$ zzLtMOA3!20+y?awqN)*?sl~$lRL0O8M z^fpqiP>{{DzNx8c-d(K8vf&fu@#GMZ136_=ys~2eawJ_xM@LYlyb%13P2b7w(n3q? z-}kP!k#oP~TdIb_dLQbSJa)`A;ksP-yDy~&Y=g6S(-!qrA0;KkQhD$^&k4-tN@ju! z-yv&+D9DakJU#6#@balsdkU$ZOVF|>h7S`nH0D!S`M6Q^NZQ?5r zi+r)uhav&gyVBz>vy+3s1lk0NtJh(sfqFod95^jXMS@?U%IAJ3Sb;#xci#Q(yg3XU zl!*kfY97`S=|=%hFHrQ<6hnjc3F+JQ`vrdLkvIhjxP^adn#tQNe7$wZ{@qs6h`dJx zNe8b5aWkc9Q`OnCK?R-4hK(7#GOt^|Nz`rD7vPL653lgvdFW9s&>N}le;gqNeM#`} z5yVE<2M-?bz4q$JSmz#nHc_lWnMJPbC~fb^kTFNdB*?zldGn~Hi2nC4MQDB=kKlNM zMi#{rFclf=n1wj#W$-WX8;YaoOALyJ10Y4n1&Kkvj2IGStD$GoSJ9V3Y9;U_OQva} z{-`i{@!5jODQy|rDAphqO$kDmZ)Lu>Jli<)TmUvKQYJ`rD{(3yKg_6D^=3SGBACK& pW}RtTm;A2{vy|M?@`}9=W8QPz!Hddk;NSM&T59^Ljmq{>{{yupc!>Z2 diff --git a/src/main/resources/static/img/greateCommunityLogo.png b/src/main/resources/static/img/logo.png similarity index 100% rename from src/main/resources/static/img/greateCommunityLogo.png rename to src/main/resources/static/img/logo.png diff --git a/src/main/resources/static/js/discuss.js b/src/main/resources/static/js/discuss.js new file mode 100644 index 00000000..a787740d --- /dev/null +++ b/src/main/resources/static/js/discuss.js @@ -0,0 +1,17 @@ +function like(btn, entityType, entityId, entityUserId) { + $.post( + CONTEXT_PATH + "/like", + {"entityType":entityType, "entityId":entityId, "entityUserId":entityUserId}, + function(data) { + data = $.parseJSON(data); + if (data.code == 0) { + $(btn).children("i").text(data.likeCount); + $(btn).children("b").text(data.likeStatus == 1 ? '已赞' : '赞'); + } + else { + alert(data.msg); + } + + } + ) +} \ No newline at end of file diff --git a/src/main/resources/templates/error/404.html b/src/main/resources/templates/error/404.html new file mode 100644 index 00000000..9be08cb6 --- /dev/null +++ b/src/main/resources/templates/error/404.html @@ -0,0 +1,91 @@ + + + + + + + + + + Echo - 404 + + +

+ +
+ + +
+
+ +
+
+ + +
+
+ + + + + + diff --git a/src/main/resources/templates/error/500.html b/src/main/resources/templates/error/500.html new file mode 100644 index 00000000..b3a0d5f0 --- /dev/null +++ b/src/main/resources/templates/error/500.html @@ -0,0 +1,91 @@ + + + + + + + + + + Echo - 500 + + +
+ +
+ + +
+
+ +
+
+ + +
+
+
+ +
+ +
+ +
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+ + + + + + diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 7aa3d59d..8c0f08eb 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -6,6 +6,7 @@ + Echo - 首页 @@ -24,10 +25,15 @@ @@ -65,15 +71,15 @@ + th:if="${loginUser != null}"> 我要发布