Commit c4c9a96b authored by tangtuo's avatar tangtuo

debug

parent aadccc00
......@@ -6,6 +6,7 @@ import com.fzm.common.entity.dto.OrderDto;
import com.fzm.common.entity.vo.OrderVo;
import com.fzm.common.enums.OrderStatus;
import java.io.IOException;
import java.util.List;
/**
......@@ -63,4 +64,12 @@ public interface OrderService extends IService<Order> {
List<OrderVo> listOrder(Integer payScene);
void processOrder(Long orderId, Integer productId, Integer payScene);
/**
* 更新订单状态
*
* @param orderId
* @return
*/
Boolean renewOrderStatus(Long orderId) throws IOException, InterruptedException;
}
......@@ -35,7 +35,7 @@ public interface WxPayService {
*/
void processOrder(JSONObject jsonObject) throws GeneralSecurityException, InterruptedException;
String queryOrder(Long orderId) throws IOException;
String queryOrder(Long orderId) throws IOException, InterruptedException;
/**
* 退款
......
......@@ -6,12 +6,13 @@ import com.fzm.common.entity.Order;
import com.fzm.common.entity.dto.OrderDto;
import com.fzm.common.entity.dto.OrderProcessMsg;
import com.fzm.common.entity.vo.OrderVo;
import com.fzm.common.enums.OrderStatus;
import com.fzm.common.enums.PayScene;
import com.fzm.common.enums.*;
import com.fzm.common.exception.GlobalException;
import com.fzm.common.mapper.OrderMapper;
import com.fzm.common.service.CopyrightApplyService;
import com.fzm.common.service.NftService;
import com.fzm.common.service.OrderService;
import com.fzm.common.service.WxPayService;
import com.fzm.common.utils.JwtUtil;
import com.fzm.common.utils.SnowflakeUtil;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
......@@ -20,6 +21,7 @@ import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
......@@ -49,6 +51,9 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
@Resource
private OrderMapper orderMapper;
@Resource
private WxPayService wxPayService;
@Override
public Order getByPaySceneAndProductId(Integer payScene, Integer productId, Integer orderStatus) {
QueryWrapper<Order> queryWrapper = new QueryWrapper<>();
......@@ -135,4 +140,16 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
OrderProcessMsg orderProcessMsg = new OrderProcessMsg(orderId, productId, payScene);
rabbitTemplate.convertAndSend("order-exchange", "order.process", orderProcessMsg);
}
@Override
public Boolean renewOrderStatus(Long orderId) throws IOException, InterruptedException {
Order order = this.getById(orderId);
if (order == null) {
throw GlobalException.newException(ResultCode.DATA_ERROR, "unknown orderId: " + orderId);
}
if (PayType.WXPAY.getCode().equals(order.getPayType())) {
wxPayService.queryOrder(orderId);
}
return true;
}
}
......@@ -193,10 +193,10 @@ public class WxPayServiceImpl implements WxPayService {
if (lock.tryLock(10, TimeUnit.SECONDS)) {
Order order = orderService.getById(out_trade_no);
// 如果订单状态不是待支付,直接返回
if (!OrderStatus.PAYING.getStatus().equals(order.getOrderStatus())) {
log.warn("当前订单已处理完成, 订单号:==> {}", out_trade_no);
return;
}
// if (!OrderStatus.PAYING.getStatus().equals(order.getOrderStatus())) {
// log.warn("当前订单已处理完成, 订单号:==> {}", out_trade_no);
// return;
// }
Integer productId = order.getProductId();
// 订单支付成功后,给mq发送一条消息,处理nft发行或版权申请的状态
OrderProcessMsg orderProcessMsg = new OrderProcessMsg(out_trade_no, productId, order.getPayScene());
......@@ -220,7 +220,7 @@ public class WxPayServiceImpl implements WxPayService {
@Override
public String queryOrder(Long orderId) throws IOException {
public String queryOrder(Long orderId) throws IOException, InterruptedException {
String url = String.format("https://api.mch.weixin.qq.com/v3/pay/transactions/out-trade-no/%s?mchid=%s", orderId, wxPayProperties.getMchId());
HttpGet httpGet = new HttpGet(url);
httpGet.setHeader("Accept", "application/json");
......@@ -229,6 +229,10 @@ public class WxPayServiceImpl implements WxPayService {
String result = EntityUtils.toString(response.getEntity());
log.info("查询微信支付订单状态, 当前订单号: {}, 返回结果:{}", orderId, result);
JSONObject jsonObject = JSONUtil.parseObj(result);
// 支付成功
if (WxPayStatus.SUCCESS.getStatus().equals(jsonObject.getStr("trade_state"))) {
processOrder(jsonObject);
}
return jsonObject.getStr("trade_state");
}
......
......@@ -12,6 +12,7 @@ import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.io.IOException;
import java.util.List;
/**
......@@ -58,5 +59,10 @@ public class OrderController {
return ResponseModel.success(orders);
}
@PostMapping("/renew-order-status")
@ApiOperation("更新订单状态")
public ResponseModel<Boolean> renewOrderStatus(@RequestParam Long orderId) throws IOException, InterruptedException {
return ResponseModel.success(orderService.renewOrderStatus(orderId));
}
}
......@@ -1251,3 +1251,212 @@ Caused by: java.sql.SQLIntegrityConstraintViolationException: Column 'user_id' i
2022-01-26 17:35:19.398 [SpringContextShutdownHook] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-01-26 17:35:19.574 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-01-26 17:35:19.586 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-01-26 17:35:25.049 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-01-26 17:35:25.095 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 32712 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-26 17:35:25.095 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-26 17:35:25.176 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-01-26 17:35:25.176 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-01-26 17:35:26.720 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-26 17:35:26.724 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-26 17:35:26.771 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 23ms. Found 0 Redis repository interfaces.
2022-01-26 17:35:28.051 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-26 17:35:28.081 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-26 17:35:28.083 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-26 17:35:28.083 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-26 17:35:28.301 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-26 17:35:28.301 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 3124 ms
2022-01-26 17:35:28.532 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-01-26 17:35:30.329 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-01-26 17:35:33.806 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-01-26 17:35:33|2022-01-26 17:35:33|||0|
2022-01-26 17:35:33.809 [restartedMain] WARN com.obs.services.ObsClient-[OBS SDK Version=3.20.6.1];[Endpoint=https://obs.cn-east-3.myhuaweicloud.com:443/];[Access Mode=Virtul Hosting]
2022-01-26 17:35:34.588 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-01-26 17:35:34.799 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-01-26 17:35:34.982 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-01-26 17:35:35.204 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-01-26 17:35:36.473 [redisson-netty-4-18] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-26 17:35:36.602 [redisson-netty-4-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-26 17:35:37.330 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-01-26 17:35:37.991 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-01-26T09:35:37.991Z
2022-01-26 17:35:38.291 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-01-26T09:35:38.291Z
2022-01-26 17:35:38.675 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-01-26 17:35:38.970 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-01-26 17:35:39.676 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-01-26 17:35:39.690 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-01-26 17:35:39.692 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-01-26 17:35:39.728 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-01-26 17:35:39.770 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-01-26 17:35:39.902 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-01-26 17:35:39.908 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-01-26 17:35:39.926 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-01-26 17:35:39.954 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-01-26 17:35:39.987 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-01-26 17:35:40.024 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-01-26 17:35:40.059 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-01-26 17:35:40.061 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-01-26 17:35:40.072 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-01-26 17:35:40.074 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-01-26 17:35:40.077 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-01-26 17:35:40.084 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-01-26 17:35:40.093 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-01-26 17:35:40.095 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-01-26 17:35:40.128 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-01-26 17:35:40.153 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-01-26 17:35:40.164 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-01-26 17:35:40.166 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-01-26 17:35:40.169 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-01-26 17:35:40.179 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-01-26 17:35:40.180 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-01-26 17:35:40.182 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-01-26 17:35:40.207 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-01-26 17:35:40.227 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-01-26 17:35:40.379 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#10de0dff:0/SimpleConnection@14be9df [delegate=amqp://guest@129.211.166.223:5672/, localPort= 56080]
2022-01-26 17:35:41.051 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 16.723 seconds (JVM running for 18.529)
2022-01-26 17:35:53.332 [http-nio-8001-exec-3] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-01-26 17:35:53.333 [http-nio-8001-exec-3] INFO org.springframework.web.servlet.DispatcherServlet-Initializing Servlet 'dispatcherServlet'
2022-01-26 17:35:53.348 [http-nio-8001-exec-3] INFO org.springframework.web.servlet.DispatcherServlet-Completed initialization in 15 ms
2022-01-26 17:35:53.736 [http-nio-8001-exec-3] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Preparing: SELECT id,telephone,email,password,wallet,nickname,signature,avatar,auth_type,auth_status,is_publish,create_date,update_date,create_time,update_time FROM tb_user WHERE id=?
2022-01-26 17:35:54.007 [http-nio-8001-exec-3] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Parameters: 2(Integer)
2022-01-26 17:35:54.075 [http-nio-8001-exec-3] DEBUG com.fzm.common.mapper.UserMapper.selectById-<== Total: 1
2022-01-26 17:35:54.512 [http-nio-8001-exec-3] INFO com.fzm.portal.aop.LogAop-请求路径: /order/list/2,请求参数:[{payScene=2}]
2022-01-26 17:35:54.609 [http-nio-8001-exec-3] DEBUG com.fzm.common.mapper.OrderMapper.getByPayScene-==> Preparing: select a.*,b.category_id from tb_order a left join tb_copyright_apply c on a.product_id = c.id left join tb_nft b on b.nft_hash = c.nft_hash where a.pay_scene = ? and a.user_id = ? order by a.update_date desc
2022-01-26 17:35:54.617 [http-nio-8001-exec-3] DEBUG com.fzm.common.mapper.OrderMapper.getByPayScene-==> Parameters: 2(Integer), 2(Integer)
2022-01-26 17:35:54.637 [http-nio-8001-exec-3] DEBUG com.fzm.common.mapper.OrderMapper.getByPayScene-<== Total: 0
2022-01-26 17:35:54.677 [http-nio-8001-exec-3] INFO com.fzm.portal.aop.LogAop-请求路径:/order/list/2,接口耗时:169ms
2022-01-26 17:36:00.880 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Preparing: SELECT id,telephone,email,password,wallet,nickname,signature,avatar,auth_type,auth_status,is_publish,create_date,update_date,create_time,update_time FROM tb_user WHERE id=?
2022-01-26 17:36:00.881 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Parameters: 2(Integer)
2022-01-26 17:36:00.906 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.UserMapper.selectById-<== Total: 1
2022-01-26 17:36:00.926 [http-nio-8001-exec-2] INFO com.fzm.portal.aop.LogAop-请求路径: /order/list/1,请求参数:[{payScene=1}]
2022-01-26 17:36:00.948 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.OrderMapper.getByPayScene-==> Preparing: select a.*,b.category_id from tb_order a left join tb_nft b on a.product_id = b.id where a.pay_scene = ? and a.user_id = ? order by a.update_date desc
2022-01-26 17:36:00.952 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.OrderMapper.getByPayScene-==> Parameters: 1(Integer), 2(Integer)
2022-01-26 17:36:00.976 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.OrderMapper.getByPayScene-<== Total: 5
2022-01-26 17:36:01.013 [http-nio-8001-exec-2] INFO com.fzm.portal.aop.LogAop-请求路径:/order/list/1,接口耗时:87ms
2022-01-26 17:43:52.724 [Thread-34] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-26 17:43:53.604 [Thread-34] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-26 17:43:53.623 [Thread-34] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-26 17:43:54.485 [Thread-34] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-26 17:43:54.745 [Thread-34] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-26 17:43:54.745 [Thread-34] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-26 17:43:54.801 [Thread-34] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-01-26 17:43:54.955 [Thread-34] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-01-26 17:43:54.966 [Thread-34] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-01-26 17:43:55.330 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 32712 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-26 17:43:55.330 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-26 17:43:56.146 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-26 17:43:56.146 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-26 17:43:56.149 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-01-26 17:43:56.203 [restartedMain] WARN org.mybatis.spring.mapper.ClassPathMapperScanner-No MyBatis mapper was found in '[com.fzm.common.mapper]' package. Please check your configuration.
2022-01-26 17:43:56.604 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-26 17:43:56.605 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-26 17:43:56.605 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-26 17:43:56.605 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-26 17:43:56.664 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-26 17:43:56.664 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 1326 ms
2022-01-26 17:43:56.695 [restartedMain] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext-Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authorityController': Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.fzm.portal.controller.AuthorityController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@31536486]
2022-01-26 17:43:56.695 [restartedMain] INFO org.apache.catalina.core.StandardService-Stopping service [Tomcat]
2022-01-26 17:43:56.701 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener-
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2022-01-26 17:43:56.718 [restartedMain] ERROR org.springframework.boot.SpringApplication-Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authorityController': Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.fzm.portal.controller.AuthorityController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@31536486]
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:289)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1290)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1205)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:556)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:516)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:324)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:322)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:897)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:879)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:551)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:405)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
at com.fzm.portal.JoyingPortalApplication.main(JoyingPortalApplication.java:15)
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: java.lang.IllegalStateException: Failed to introspect Class [com.fzm.portal.controller.AuthorityController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@31536486]
at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:481)
at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:267)
... 24 common frames omitted
Caused by: java.lang.NoClassDefFoundError: com/fzm/common/model/ResponseModel
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.getDeclaredMethods(Class.java:1975)
at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:463)
... 26 common frames omitted
Caused by: java.lang.ClassNotFoundException: com.fzm.common.model.ResponseModel
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at org.springframework.boot.devtools.restart.classloader.RestartClassLoader.loadClass(RestartClassLoader.java:144)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
... 30 common frames omitted
2022-01-26 17:44:00.951 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 32712 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-26 17:44:00.951 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-26 17:44:01.466 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-26 17:44:01.467 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-26 17:44:01.468 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 0ms. Found 0 Redis repository interfaces.
2022-01-26 17:44:01.717 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-26 17:44:01.717 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-26 17:44:01.717 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-26 17:44:01.717 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-26 17:44:01.770 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-1].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-26 17:44:01.770 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 816 ms
2022-01-26 17:44:01.835 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-01-26 17:44:03.231 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-2} inited
2022-01-26 17:44:04.231 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-01-26 17:44:04|2022-01-26 17:44:04|||0|
2022-01-26 17:44:04.232 [restartedMain] WARN com.obs.services.ObsClient-[OBS SDK Version=3.20.6.1];[Endpoint=https://obs.cn-east-3.myhuaweicloud.com:443/];[Access Mode=Virtul Hosting]
2022-01-26 17:44:04.516 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-01-26 17:44:04.596 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-01-26 17:44:04.739 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-01-26 17:44:04.841 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-01-26 17:44:04.924 [redisson-netty-10-25] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-26 17:44:05.025 [redisson-netty-10-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-26 17:44:05.730 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-01-26 17:44:06.575 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-01-26 17:44:06.768 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-01-26 17:44:07.187 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-01-26 17:44:07.191 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-01-26 17:44:07.192 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-01-26 17:44:07.193 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-01-26 17:44:07.201 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-01-26 17:44:07.219 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-01-26 17:44:07.223 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-01-26 17:44:07.234 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-01-26 17:44:07.244 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-01-26 17:44:07.263 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-01-26 17:44:07.280 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-01-26 17:44:07.299 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-01-26 17:44:07.300 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-01-26 17:44:07.305 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-01-26 17:44:07.306 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-01-26 17:44:07.308 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-01-26 17:44:07.314 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-01-26 17:44:07.322 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-01-26 17:44:07.326 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-01-26 17:44:07.362 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-01-26 17:44:07.371 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-01-26 17:44:07.381 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-01-26 17:44:07.383 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-01-26 17:44:07.385 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-01-26 17:44:07.393 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-01-26 17:44:07.395 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-01-26 17:44:07.396 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-01-26 17:44:07.413 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-01-26 17:44:07.419 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-01-26 17:44:07.490 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#42ce265b:0/SimpleConnection@5ad62c2c [delegate=amqp://guest@129.211.166.223:5672/, localPort= 56289]
2022-01-26 17:44:07.905 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 6.999 seconds (JVM running for 525.382)
2022-01-26 17:44:07.907 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-01-27 14:25:25.756 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-01-27 14:25:25.788 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 26632 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-27 14:25:25.789 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-27 14:25:25.840 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-01-27 14:25:25.840 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-01-27 14:25:26.984 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-27 14:25:26.987 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-27 14:25:27.015 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 12ms. Found 0 Redis repository interfaces.
2022-01-27 14:25:28.049 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-27 14:25:28.058 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-27 14:25:28.059 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-27 14:25:28.059 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-27 14:25:28.195 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-27 14:25:28.195 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 2355 ms
2022-01-27 14:25:28.360 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-01-27 14:25:29.573 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-01-27 14:25:31.414 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-01-27 14:25:31|2022-01-27 14:25:31|||0|
2022-01-27 14:25:31.429 [restartedMain] WARN com.obs.services.ObsClient-[OBS SDK Version=3.20.6.1];[Endpoint=https://obs.cn-east-3.myhuaweicloud.com:443/];[Access Mode=Virtul Hosting]
2022-01-27 14:25:31.877 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-01-27 14:25:31.955 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-01-27 14:25:32.039 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-01-27 14:25:32.180 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-01-27 14:25:33.174 [redisson-netty-4-20] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:25:33.458 [redisson-netty-4-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:25:33.991 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-01-27 14:25:34.436 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-01-27T06:25:34.436Z
2022-01-27 14:25:34.598 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-01-27T06:25:34.598Z
2022-01-27 14:25:35.068 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-01-27 14:25:35.327 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-01-27 14:25:35.955 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-01-27 14:25:35.969 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-01-27 14:25:35.971 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-01-27 14:25:35.988 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-01-27 14:25:36.021 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-01-27 14:25:36.134 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-01-27 14:25:36.134 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-01-27 14:25:36.150 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-01-27 14:25:36.181 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-01-27 14:25:36.197 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-01-27 14:25:36.244 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-01-27 14:25:36.259 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-01-27 14:25:36.259 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-01-27 14:25:36.275 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-01-27 14:25:36.275 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-01-27 14:25:36.275 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-01-27 14:25:36.275 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-01-27 14:25:36.290 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-01-27 14:25:36.290 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-01-27 14:25:36.322 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-01-27 14:25:36.337 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-01-27 14:25:36.337 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-01-27 14:25:36.337 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-01-27 14:25:36.337 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-01-27 14:25:36.353 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-01-27 14:25:36.353 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-01-27 14:25:36.353 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-01-27 14:25:36.369 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-01-27 14:25:36.401 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-01-27 14:25:36.480 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#8c3e291:0/SimpleConnection@5a6684f8 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 50750]
2022-01-27 14:25:36.815 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 11.523 seconds (JVM running for 13.695)
2022-01-27 14:25:57.414 [http-nio-8001-exec-2] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-01-27 14:25:57.414 [http-nio-8001-exec-2] INFO org.springframework.web.servlet.DispatcherServlet-Initializing Servlet 'dispatcherServlet'
2022-01-27 14:25:57.423 [http-nio-8001-exec-2] INFO org.springframework.web.servlet.DispatcherServlet-Completed initialization in 9 ms
2022-01-27 14:28:47.102 [http-nio-8001-exec-3] ERROR c.f.c.exception.handler.GlobalExceptionHandler-请先登录
com.fzm.common.exception.GlobalException: 请先登录
at com.fzm.common.exception.GlobalException.newException(GlobalException.java:30)
at com.fzm.common.interceptor.AuthenticationInterceptor.preHandle(AuthenticationInterceptor.java:54)
at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:151)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1035)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:943)
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:227)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
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:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
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:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
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:189)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
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:346)
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:887)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1684)
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)
2022-01-27 14:28:47.106 [http-nio-8001-exec-3] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver-Resolved [com.fzm.common.exception.GlobalException: 请先登录]
2022-01-27 14:29:05.669 [http-nio-8001-exec-1] INFO com.fzm.portal.aop.LogAop-请求路径: /user/login,请求参数:[LoginParam(telephone=17620078872, email=null, password=123456, verificationCode=null, codetype=null)]
2022-01-27 14:29:05.808 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.UserMapper.selectOne-==> Preparing: SELECT id,telephone,email,password,wallet,nickname,signature,avatar,auth_type,auth_status,is_publish,create_date,update_date,create_time,update_time FROM tb_user WHERE (telephone = ? OR email = ?)
2022-01-27 14:29:05.921 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.UserMapper.selectOne-==> Parameters: 17620078872(String), 17620078872(String)
2022-01-27 14:29:05.977 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.UserMapper.selectOne-<== Total: 1
2022-01-27 14:29:06.056 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.AuthPersonMapper.selectOne-==> Preparing: SELECT id,user_id,name,id_card,card_picture_front,card_picture_back,create_date,update_date FROM tb_auth_person WHERE (user_id = ?)
2022-01-27 14:29:06.058 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.AuthPersonMapper.selectOne-==> Parameters: 2(Integer)
2022-01-27 14:29:06.076 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.AuthPersonMapper.selectOne-<== Total: 1
2022-01-27 14:29:06.533 [http-nio-8001-exec-1] INFO com.fzm.portal.aop.LogAop-请求路径:/user/login,接口耗时:865ms
2022-01-27 14:29:39.384 [http-nio-8001-exec-4] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Preparing: SELECT id,telephone,email,password,wallet,nickname,signature,avatar,auth_type,auth_status,is_publish,create_date,update_date,create_time,update_time FROM tb_user WHERE id=?
2022-01-27 14:29:39.385 [http-nio-8001-exec-4] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Parameters: 2(Integer)
2022-01-27 14:29:39.405 [http-nio-8001-exec-4] DEBUG com.fzm.common.mapper.UserMapper.selectById-<== Total: 1
2022-01-27 14:29:39.433 [http-nio-8001-exec-4] INFO com.fzm.portal.aop.LogAop-请求路径: /order/renew-order-status,请求参数:[{orderId=1485872416604422144}]
2022-01-27 14:30:19.336 [http-nio-8001-exec-4] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE id=?
2022-01-27 14:30:19.341 [http-nio-8001-exec-4] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Parameters: 1485872416604422144(Long)
2022-01-27 14:30:19.366 [http-nio-8001-exec-4] DEBUG com.fzm.common.mapper.OrderMapper.selectById-<== Total: 1
2022-01-27 14:33:02.386 [AMQP Connection 129.211.166.223:5672] WARN com.rabbitmq.client.impl.ForgivingExceptionHandler-An unexpected connection driver error occured (Exception message: Connection reset)
2022-01-27 14:33:02.392 [AMQP Connection 129.211.166.223:5672] ERROR o.s.a.rabbit.connection.CachingConnectionFactory-Channel shutdown: connection error
2022-01-27 14:33:02.393 [AMQP Connection 129.211.166.223:5672] ERROR o.s.a.rabbit.connection.CachingConnectionFactory-Channel shutdown: connection error
2022-01-27 14:33:02.420 [http-nio-8001-exec-4] INFO com.fzm.portal.aop.LogAop-请求路径:/order/renew-order-status,接口耗时:202987ms
2022-01-27 14:33:03.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Restarting Consumer@3563e791: tags=[[amq.ctag-RJzb6CKYAqnyot7EU1c4Hg]], channel=Cached Rabbit Channel: AMQChannel(amqp://guest@129.211.166.223:5672/,1), conn: Proxy@6c1f6715 Shared Rabbit Connection: SimpleConnection@5a6684f8 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 50750], acknowledgeMode=AUTO local queue size=0
2022-01-27 14:33:03.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-1] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Restarting Consumer@1c3f0265: tags=[[amq.ctag-NvJoQqBcM9gMD2iYphBNSw]], channel=Cached Rabbit Channel: AMQChannel(amqp://guest@129.211.166.223:5672/,2), conn: Proxy@6c1f6715 Shared Rabbit Connection: SimpleConnection@5a6684f8 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 50750], acknowledgeMode=AUTO local queue size=0
2022-01-27 14:33:03.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-01-27 14:33:03.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#1-2] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#8c3e291:1/SimpleConnection@341b6cdd [delegate=amqp://guest@129.211.166.223:5672/, localPort= 50967]
2022-01-27 14:33:12.274 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Preparing: SELECT id,telephone,email,password,wallet,nickname,signature,avatar,auth_type,auth_status,is_publish,create_date,update_date,create_time,update_time FROM tb_user WHERE id=?
2022-01-27 14:33:12.275 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Parameters: 2(Integer)
2022-01-27 14:33:12.294 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.UserMapper.selectById-<== Total: 1
2022-01-27 14:33:12.310 [http-nio-8001-exec-5] INFO com.fzm.portal.aop.LogAop-请求路径: /order/renew-order-status,请求参数:[{orderId=1485567815770570752}]
2022-01-27 14:33:14.204 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE id=?
2022-01-27 14:33:14.205 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Parameters: 1485567815770570752(Long)
2022-01-27 14:33:14.227 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.OrderMapper.selectById-<== Total: 1
2022-01-27 14:33:46.044 [http-nio-8001-exec-5] INFO com.fzm.portal.aop.LogAop-请求路径:/order/renew-order-status,接口耗时:33734ms
2022-01-27 14:33:46.106 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-27 14:33:47.052 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-27 14:33:47.068 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-27 14:33:48.105 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-27 14:33:48.323 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-27 14:33:48.323 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-27 14:33:48.418 [SpringContextShutdownHook] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-01-27 14:33:48.588 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-01-27 14:33:48.592 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-01-27 14:33:54.324 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-01-27 14:33:54.356 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 32540 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-27 14:33:54.356 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-27 14:33:54.411 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-01-27 14:33:54.411 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-01-27 14:33:55.650 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-27 14:33:55.652 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-27 14:33:55.675 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 11ms. Found 0 Redis repository interfaces.
2022-01-27 14:33:56.583 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-27 14:33:56.591 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-27 14:33:56.592 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-27 14:33:56.592 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-27 14:33:56.721 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-27 14:33:56.721 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 2309 ms
2022-01-27 14:33:56.883 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-01-27 14:33:58.111 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-01-27 14:33:59.847 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-01-27 14:33:59|2022-01-27 14:33:59|||0|
2022-01-27 14:33:59.849 [restartedMain] WARN com.obs.services.ObsClient-[OBS SDK Version=3.20.6.1];[Endpoint=https://obs.cn-east-3.myhuaweicloud.com:443/];[Access Mode=Virtul Hosting]
2022-01-27 14:34:00.205 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-01-27 14:34:00.295 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-01-27 14:34:00.406 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-01-27 14:34:00.537 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-01-27 14:34:01.532 [redisson-netty-4-27] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:34:01.636 [redisson-netty-4-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:34:02.169 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-01-27 14:34:02.564 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-01-27T06:34:02.564Z
2022-01-27 14:34:02.722 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-01-27T06:34:02.722Z
2022-01-27 14:34:03.191 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-01-27 14:34:03.461 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-01-27 14:34:04.037 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-01-27 14:34:04.050 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-01-27 14:34:04.052 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-01-27 14:34:04.066 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-01-27 14:34:04.094 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-01-27 14:34:04.203 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-01-27 14:34:04.209 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-01-27 14:34:04.224 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-01-27 14:34:04.239 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-01-27 14:34:04.268 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-01-27 14:34:04.289 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-01-27 14:34:04.309 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-01-27 14:34:04.310 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-01-27 14:34:04.317 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-01-27 14:34:04.318 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-01-27 14:34:04.319 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-01-27 14:34:04.324 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-01-27 14:34:04.333 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-01-27 14:34:04.336 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-01-27 14:34:04.368 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-01-27 14:34:04.387 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-01-27 14:34:04.394 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-01-27 14:34:04.396 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-01-27 14:34:04.398 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-01-27 14:34:04.408 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-01-27 14:34:04.408 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-01-27 14:34:04.409 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-01-27 14:34:04.432 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-01-27 14:34:04.448 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-01-27 14:34:04.540 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#7c9c546c:0/SimpleConnection@3ac1200d [delegate=amqp://guest@129.211.166.223:5672/, localPort= 51098]
2022-01-27 14:34:04.921 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 11.032 seconds (JVM running for 12.225)
2022-01-27 14:38:08.790 [http-nio-8001-exec-5] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-01-27 14:38:08.790 [http-nio-8001-exec-5] INFO org.springframework.web.servlet.DispatcherServlet-Initializing Servlet 'dispatcherServlet'
2022-01-27 14:38:08.799 [http-nio-8001-exec-5] INFO org.springframework.web.servlet.DispatcherServlet-Completed initialization in 9 ms
2022-01-27 14:38:09.056 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Preparing: SELECT id,telephone,email,password,wallet,nickname,signature,avatar,auth_type,auth_status,is_publish,create_date,update_date,create_time,update_time FROM tb_user WHERE id=?
2022-01-27 14:38:09.156 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Parameters: 2(Integer)
2022-01-27 14:38:09.206 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.UserMapper.selectById-<== Total: 1
2022-01-27 14:38:09.443 [http-nio-8001-exec-5] INFO com.fzm.portal.aop.LogAop-请求路径: /order/renew-order-status,请求参数:[{orderId=1485567815770570752}]
2022-01-27 14:38:15.152 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE id=?
2022-01-27 14:38:15.157 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Parameters: 1485567815770570752(Long)
2022-01-27 14:38:15.180 [http-nio-8001-exec-5] DEBUG com.fzm.common.mapper.OrderMapper.selectById-<== Total: 1
2022-01-27 14:38:35.629 [http-nio-8001-exec-5] INFO com.fzm.common.service.impl.WxPayServiceImpl-查询微信支付订单状态, 当前订单号: 1485567815770570752, 返回结果:{"amount":{"currency":"CNY","payer_currency":"CNY","payer_total":1,"total":1},"appid":"wxbdddd81913c795e9","attach":"","bank_type":"OTHERS","mchid":"1604477044","out_trade_no":"1485567815770570752","payer":{"openid":"oRpMVw3OiOuVDZPrJTzMwTJALf70"},"promotion_detail":[],"success_time":"2022-01-24T18:59:07+08:00","trade_state":"SUCCESS","trade_state_desc":"支付成功","trade_type":"JSAPI","transaction_id":"4200001320202201242004822259"}
2022-01-27 14:39:09.797 [redisson-timer-6-1] ERROR org.redisson.client.handler.PingConnectionHandler-Unable to send PING command over channel: [id: 0x7d675397, L:/192.168.20.251:51082 - R:146.56.218.121/146.56.218.121:6379]
org.redisson.client.RedisTimeoutException: Command execution timeout for command: (PING), params: [], Redis client: [addr=redis://146.56.218.121:6379]
at org.redisson.client.RedisConnection.lambda$async$1(RedisConnection.java:219)
at io.netty.util.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:672)
at io.netty.util.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:747)
at io.netty.util.HashedWheelTimer$Worker.run(HashedWheelTimer.java:472)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
2022-01-27 14:39:15.851 [http-nio-8001-exec-5] WARN com.fzm.common.service.impl.WxPayServiceImpl-当前订单已处理完成, 订单号:==> 1485567815770570752
2022-01-27 14:39:23.321 [redisson-timer-6-1] ERROR org.redisson.client.handler.PingConnectionHandler-Unable to send PING command over channel: [id: 0xfee10770, L:/192.168.20.251:51080 - R:146.56.218.121/146.56.218.121:6379]
org.redisson.client.RedisTimeoutException: Command execution timeout for command: (PING), params: [], Redis client: [addr=redis://146.56.218.121:6379]
at org.redisson.client.RedisConnection.lambda$async$1(RedisConnection.java:219)
at io.netty.util.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:672)
at io.netty.util.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:747)
at io.netty.util.HashedWheelTimer$Worker.run(HashedWheelTimer.java:472)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
2022-01-27 14:39:23.355 [http-nio-8001-exec-5] INFO com.fzm.portal.aop.LogAop-请求路径:/order/renew-order-status,接口耗时:73913ms
2022-01-27 14:40:14.640 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-27 14:40:14.786 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-27 14:40:14.799 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-27 14:40:15.786 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-27 14:40:15.995 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-27 14:40:15.995 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-27 14:40:16.045 [SpringContextShutdownHook] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-01-27 14:40:16.189 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-01-27 14:40:16.194 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-01-27 14:40:22.101 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-01-27 14:40:22.129 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 25116 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-27 14:40:22.130 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-27 14:40:22.174 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-01-27 14:40:22.174 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-01-27 14:40:23.295 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-27 14:40:23.297 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-27 14:40:23.319 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 11ms. Found 0 Redis repository interfaces.
2022-01-27 14:40:24.214 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-27 14:40:24.221 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-27 14:40:24.222 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-27 14:40:24.222 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-27 14:40:24.348 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-27 14:40:24.348 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 2174 ms
2022-01-27 14:40:24.507 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-01-27 14:40:25.784 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-01-27 14:40:27.466 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-01-27 14:40:27|2022-01-27 14:40:27|||0|
2022-01-27 14:40:27.468 [restartedMain] WARN com.obs.services.ObsClient-[OBS SDK Version=3.20.6.1];[Endpoint=https://obs.cn-east-3.myhuaweicloud.com:443/];[Access Mode=Virtul Hosting]
2022-01-27 14:40:27.815 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-01-27 14:40:27.904 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-01-27 14:40:28.007 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-01-27 14:40:28.135 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-01-27 14:40:29.127 [redisson-netty-4-26] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:40:29.275 [redisson-netty-4-23] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:40:29.796 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-01-27 14:40:30.214 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-01-27T06:40:30.214Z
2022-01-27 14:40:30.432 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-01-27T06:40:30.432Z
2022-01-27 14:40:30.830 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-01-27 14:40:31.106 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-01-27 14:40:31.651 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-01-27 14:40:31.663 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-01-27 14:40:31.664 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-01-27 14:40:31.678 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-01-27 14:40:31.706 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-01-27 14:40:31.812 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-01-27 14:40:31.818 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-01-27 14:40:31.833 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-01-27 14:40:31.849 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-01-27 14:40:31.877 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-01-27 14:40:31.896 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-01-27 14:40:31.916 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-01-27 14:40:31.917 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-01-27 14:40:31.923 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-01-27 14:40:31.924 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-01-27 14:40:31.925 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-01-27 14:40:31.930 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-01-27 14:40:31.938 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-01-27 14:40:31.940 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-01-27 14:40:31.971 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-01-27 14:40:31.989 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-01-27 14:40:31.996 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-01-27 14:40:31.998 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-01-27 14:40:32.000 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-01-27 14:40:32.009 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-01-27 14:40:32.010 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-01-27 14:40:32.011 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-01-27 14:40:32.035 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-01-27 14:40:32.054 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-01-27 14:40:32.180 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#707a96da:0/SimpleConnection@1ce58bfb [delegate=amqp://guest@129.211.166.223:5672/, localPort= 51306]
2022-01-27 14:40:32.845 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 11.15 seconds (JVM running for 12.378)
2022-01-27 14:40:51.736 [http-nio-8001-exec-1] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-01-27 14:40:51.736 [http-nio-8001-exec-1] INFO org.springframework.web.servlet.DispatcherServlet-Initializing Servlet 'dispatcherServlet'
2022-01-27 14:40:51.745 [http-nio-8001-exec-1] INFO org.springframework.web.servlet.DispatcherServlet-Completed initialization in 9 ms
2022-01-27 14:40:51.956 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Preparing: SELECT id,telephone,email,password,wallet,nickname,signature,avatar,auth_type,auth_status,is_publish,create_date,update_date,create_time,update_time FROM tb_user WHERE id=?
2022-01-27 14:40:52.064 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.UserMapper.selectById-==> Parameters: 2(Integer)
2022-01-27 14:40:52.109 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.UserMapper.selectById-<== Total: 1
2022-01-27 14:40:52.328 [http-nio-8001-exec-1] INFO com.fzm.portal.aop.LogAop-请求路径: /order/renew-order-status,请求参数:[{orderId=1485567815770570752}]
2022-01-27 14:40:56.127 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE id=?
2022-01-27 14:40:56.128 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.OrderMapper.selectById-==> Parameters: 1485567815770570752(Long)
2022-01-27 14:40:56.148 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.OrderMapper.selectById-<== Total: 1
2022-01-27 14:41:04.135 [http-nio-8001-exec-1] INFO com.fzm.common.service.impl.WxPayServiceImpl-查询微信支付订单状态, 当前订单号: 1485567815770570752, 返回结果:{"amount":{"currency":"CNY","payer_currency":"CNY","payer_total":1,"total":1},"appid":"wxbdddd81913c795e9","attach":"","bank_type":"OTHERS","mchid":"1604477044","out_trade_no":"1485567815770570752","payer":{"openid":"oRpMVw3OiOuVDZPrJTzMwTJALf70"},"promotion_detail":[],"success_time":"2022-01-24T18:59:07+08:00","trade_state":"SUCCESS","trade_state_desc":"支付成功","trade_type":"JSAPI","transaction_id":"4200001320202201242004822259"}
2022-01-27 14:41:31.186 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.OrderMapper.updateById-==> Preparing: UPDATE tb_order SET order_status=? WHERE id=?
2022-01-27 14:41:31.231 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.OrderMapper.updateById-==> Parameters: 1(Integer), 1485567815770570752(Long)
2022-01-27 14:41:31.264 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.OrderMapper.updateById-<== Updates: 1
2022-01-27 14:41:57.343 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.PaymentMapper.insert-==> Preparing: INSERT INTO tb_payment ( order_id, transaction_id, trade_type, total_fee, success_time, content ) VALUES ( ?, ?, ?, ?, ?, ? )
2022-01-27 14:41:57.354 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.PaymentMapper.insert-==> Parameters: 1485567815770570752(Long), 4200001320202201242004822259(String), JSAPI(String), 1(Integer), 2022-01-24T18:59:07+08:00(String), {"transaction_id":"4200001320202201242004822259","amount":{"payer_total":1,"total":1,"currency":"CNY","payer_currency":"CNY"},"mchid":"1604477044","trade_state":"SUCCESS","bank_type":"OTHERS","promotion_detail":[],"success_time":"2022-01-24T18:59:07+08:00","payer":{"openid":"oRpMVw3OiOuVDZPrJTzMwTJALf70"},"out_trade_no":"1485567815770570752","appid":"wxbdddd81913c795e9","trade_state_desc":"支付成功","trade_type":"JSAPI","attach":""}(String)
2022-01-27 14:41:57.386 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.PaymentMapper.insert-<== Updates: 1
2022-01-27 14:41:57.443 [http-nio-8001-exec-1] INFO com.fzm.portal.aop.LogAop-请求路径:/order/renew-order-status,接口耗时:65116ms
2022-01-27 14:43:34.858 [Thread-23] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-27 14:43:35.185 [Thread-23] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-27 14:43:35.204 [Thread-23] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-01-27 14:43:36.146 [Thread-23] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-01-27 14:43:36.438 [Thread-23] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-27 14:43:36.438 [Thread-23] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-01-27 14:43:36.493 [Thread-23] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-01-27 14:43:36.684 [Thread-23] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-01-27 14:43:36.693 [Thread-23] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-01-27 14:43:37.042 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 25116 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-27 14:43:37.042 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-27 14:43:37.488 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-27 14:43:37.488 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-27 14:43:37.490 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-01-27 14:43:37.538 [restartedMain] WARN org.mybatis.spring.mapper.ClassPathMapperScanner-No MyBatis mapper was found in '[com.fzm.common.mapper]' package. Please check your configuration.
2022-01-27 14:43:37.791 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-27 14:43:37.792 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-27 14:43:37.792 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-27 14:43:37.792 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-27 14:43:37.831 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-27 14:43:37.831 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 785 ms
2022-01-27 14:43:37.850 [restartedMain] WARN o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext-Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authorityController': Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.fzm.portal.controller.AuthorityController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@6e55e9e9]
2022-01-27 14:43:37.850 [restartedMain] INFO org.apache.catalina.core.StandardService-Stopping service [Tomcat]
2022-01-27 14:43:37.855 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener-
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2022-01-27 14:43:37.872 [restartedMain] ERROR org.springframework.boot.SpringApplication-Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'authorityController': Lookup method resolution failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [com.fzm.portal.controller.AuthorityController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@6e55e9e9]
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:289)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1290)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1205)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:556)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:516)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:324)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:322)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:897)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:879)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:551)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:143)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:758)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:750)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:405)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1237)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226)
at com.fzm.portal.JoyingPortalApplication.main(JoyingPortalApplication.java:15)
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: java.lang.IllegalStateException: Failed to introspect Class [com.fzm.portal.controller.AuthorityController] from ClassLoader [org.springframework.boot.devtools.restart.classloader.RestartClassLoader@6e55e9e9]
at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:481)
at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:267)
... 24 common frames omitted
Caused by: java.lang.NoClassDefFoundError: com/fzm/common/model/ResponseModel
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.getDeclaredMethods(Class.java:1975)
at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:463)
... 26 common frames omitted
Caused by: java.lang.ClassNotFoundException: com.fzm.common.model.ResponseModel
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at org.springframework.boot.devtools.restart.classloader.RestartClassLoader.loadClass(RestartClassLoader.java:144)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
... 30 common frames omitted
2022-01-27 14:43:41.052 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 25116 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-01-27 14:43:41.052 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-01-27 14:43:41.451 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-01-27 14:43:41.452 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-01-27 14:43:41.452 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 0ms. Found 0 Redis repository interfaces.
2022-01-27 14:43:41.647 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-01-27 14:43:41.647 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-01-27 14:43:41.647 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-01-27 14:43:41.648 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-01-27 14:43:41.689 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-1].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-01-27 14:43:41.689 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 634 ms
2022-01-27 14:43:41.731 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-01-27 14:43:42.717 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-2} inited
2022-01-27 14:43:43.547 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-01-27 14:43:43|2022-01-27 14:43:43|||0|
2022-01-27 14:43:43.547 [restartedMain] WARN com.obs.services.ObsClient-[OBS SDK Version=3.20.6.1];[Endpoint=https://obs.cn-east-3.myhuaweicloud.com:443/];[Access Mode=Virtul Hosting]
2022-01-27 14:43:43.788 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-01-27 14:43:43.880 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-01-27 14:43:43.988 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-01-27 14:43:44.059 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-01-27 14:43:44.155 [redisson-netty-10-1] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:43:44.240 [redisson-netty-10-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-01-27 14:43:44.818 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-01-27 14:43:45.646 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-01-27 14:43:45.798 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-01-27 14:43:46.095 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-01-27 14:43:46.097 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-01-27 14:43:46.098 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-01-27 14:43:46.098 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-01-27 14:43:46.104 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-01-27 14:43:46.115 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-01-27 14:43:46.118 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-01-27 14:43:46.125 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-01-27 14:43:46.134 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-01-27 14:43:46.157 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-01-27 14:43:46.174 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-01-27 14:43:46.191 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-01-27 14:43:46.192 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-01-27 14:43:46.196 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-01-27 14:43:46.197 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-01-27 14:43:46.198 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-01-27 14:43:46.202 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-01-27 14:43:46.208 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-01-27 14:43:46.210 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-01-27 14:43:46.233 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-01-27 14:43:46.243 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-01-27 14:43:46.249 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-01-27 14:43:46.251 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-01-27 14:43:46.253 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-01-27 14:43:46.262 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-01-27 14:43:46.263 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-01-27 14:43:46.263 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-01-27 14:43:46.278 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-01-27 14:43:46.285 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-01-27 14:43:46.350 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#5f085312:0/SimpleConnection@1d9eaf7e [delegate=amqp://guest@129.211.166.223:5672/, localPort= 51460]
2022-01-27 14:43:46.777 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 5.766 seconds (JVM running for 206.31)
2022-01-27 14:43:46.779 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment