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 80080a51..9dc273ec 100644 Binary files a/src/main/resources/static/img/404.png and b/src/main/resources/static/img/404.png differ diff --git a/src/main/resources/static/img/500.png b/src/main/resources/static/img/500.png new file mode 100644 index 00000000..744f1107 Binary files /dev/null and b/src/main/resources/static/img/500.png differ diff --git a/src/main/resources/static/img/error.png b/src/main/resources/static/img/error.png deleted file mode 100644 index a82f8853..00000000 Binary files a/src/main/resources/static/img/error.png and /dev/null differ 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}"> 我要发布