Commit d1881a4b authored by tangtuo's avatar tangtuo

新增查询发行中的nft的接口

parent a628a19d
...@@ -183,6 +183,14 @@ public interface NftService extends IService<Nft> { ...@@ -183,6 +183,14 @@ public interface NftService extends IService<Nft> {
*/ */
void delete(Integer id); void delete(Integer id);
/**
* 获取当前用户正在发行中的nft列表
* @return
*/
List<Nft> getPublishingList();
// void republish(); // void republish();
} }
...@@ -258,6 +258,17 @@ public class NftServiceImpl extends ServiceImpl<NftMapper, Nft> implements NftSe ...@@ -258,6 +258,17 @@ public class NftServiceImpl extends ServiceImpl<NftMapper, Nft> implements NftSe
this.removeById(id); this.removeById(id);
} }
@Override
public List<Nft> getPublishingList() {
String token = request.getHeader("Authorization");
Integer userId = JwtUtil.getUserIdFromToken(token);
QueryWrapper<Nft> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("user_id", userId).
eq("publish_status", PublishStatus.PUBLISHING.getCode()).
orderByDesc("publish_time");
return this.list(queryWrapper);
}
// @Override // @Override
// public void republish() { // public void republish() {
// List<Nft> nfts = nftMapper.get(); // List<Nft> nfts = nftMapper.get();
......
...@@ -195,4 +195,9 @@ public class NftController { ...@@ -195,4 +195,9 @@ public class NftController {
return ResponseModel.success(nftService.getById(id)); return ResponseModel.success(nftService.getById(id));
} }
@GetMapping("/publishing-list")
@ApiOperation(value = "获取当前用户正在发行中的nft列表")
public ResponseModel<List<Nft>> getPublishingList() {
return ResponseModel.success(nftService.getPublishingList());
}
} }
package com.fzm.portal.listener; package com.fzm.portal.listener;
import com.fzm.common.entity.Nft;
import com.fzm.common.entity.dto.OrderProcessMsg; import com.fzm.common.entity.dto.OrderProcessMsg;
import com.fzm.common.enums.CopyrightApplyState; import com.fzm.common.enums.CopyrightApplyState;
import com.fzm.common.enums.PayScene; import com.fzm.common.enums.PayScene;
import com.fzm.common.enums.PublishStatus;
import com.fzm.common.enums.RefundLaunchChannel; import com.fzm.common.enums.RefundLaunchChannel;
import com.fzm.common.service.CopyrightApplyService; import com.fzm.common.service.CopyrightApplyService;
import com.fzm.common.service.NftService; import com.fzm.common.service.NftService;
...@@ -45,6 +47,13 @@ public class OrderListener { ...@@ -45,6 +47,13 @@ public class OrderListener {
} catch (Exception e) { } catch (Exception e) {
// 处理失败,需要主动发起退款 // 处理失败,需要主动发起退款
wxPayService.refund(msg.getOrderId(), RefundLaunchChannel.USER.getCode()); wxPayService.refund(msg.getOrderId(), RefundLaunchChannel.USER.getCode());
// nft发行时发生异常,则需要把nft的状态改成发行失败
if (msg.getPayScene().equals(PayScene.NFT.getCode())) {
Nft nft = new Nft();
nft.setId(msg.getProductId());
nft.setPublishStatus(PublishStatus.FAILED.getCode());
nftService.updateById(nft);
}
} }
} }
......
2022-02-10 18:06:25.253 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-02-10 18:06:25.284 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 55796 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-10 18:06:25.285 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 18:06:25.337 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-02-10 18:06:25.337 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-02-10 18:06:26.314 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 18:06:26.315 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 18:06:26.338 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 11ms. Found 0 Redis repository interfaces.
2022-02-10 18:06:27.262 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 18:06:27.270 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 18:06:27.270 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 18:06:27.271 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 18:06:27.401 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 18:06:27.402 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 2064 ms
2022-02-10 18:06:27.558 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 18:06:29.223 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-02-10 18:06:31.126 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 18:06:30|2022-02-10 18:06:31|||0|
2022-02-10 18:06:31.128 [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-02-10 18:06:31.504 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 18:06:31.591 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 18:06:31.693 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:06:31.825 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 18:06:32.863 [redisson-netty-4-18] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:06:32.965 [redisson-netty-4-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:06:33.336 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 18:06:33.785 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-02-10T10:06:33.785Z
2022-02-10 18:06:33.950 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-02-10T10:06:33.950Z
2022-02-10 18:06:34.605 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-02-10 18:06:34.866 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 18:06:35.318 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 18:06:35.480 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 18:06:35.495 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 18:06:35.496 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 18:06:35.510 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 18:06:35.539 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 18:06:35.653 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 18:06:35.659 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 18:06:35.673 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 18:06:35.689 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 18:06:35.716 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 18:06:35.736 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 18:06:35.756 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 18:06:35.757 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 18:06:35.762 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 18:06:35.763 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 18:06:35.765 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 18:06:35.770 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 18:06:35.777 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 18:06:35.779 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 18:06:35.803 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 18:06:35.812 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 18:06:35.829 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 18:06:35.836 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 18:06:35.838 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 18:06:35.840 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 18:06:35.850 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 18:06:35.850 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 18:06:35.851 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 18:06:35.874 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 18:06:35.891 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 18:06:35.979 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#37efe363:0/SimpleConnection@44dded45 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 58111]
2022-02-10 18:06:36.418 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 11.571 seconds (JVM running for 13.904)
2022-02-10 18:07:00.151 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:07:00.253 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:07:00.084(Timestamp)
2022-02-10 18:07:00.294 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:08:00.033 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:08:00.033 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:08:00.031(Timestamp)
2022-02-10 18:08:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:09:00.046 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:09:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:09:00.044(Timestamp)
2022-02-10 18:09:00.058 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:10:00.043 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:10:00.043 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:10:00.041(Timestamp)
2022-02-10 18:10:00.056 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:11:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:11:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:11:00.045(Timestamp)
2022-02-10 18:11:00.059 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:12:00.032 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:12:00.033 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:12:00.031(Timestamp)
2022-02-10 18:12:00.043 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:13:00.028 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:13:00.029 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:13:00.027(Timestamp)
2022-02-10 18:13:00.042 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:14:00.033 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:14:00.034 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:14:00.031(Timestamp)
2022-02-10 18:14:00.045 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:15:00.037 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:15:00.038 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:15:00.036(Timestamp)
2022-02-10 18:15:00.049 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:16:00.036 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:16:00.037 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:16:00.035(Timestamp)
2022-02-10 18:16:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:17:00.034 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:17:00.034 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:17:00.032(Timestamp)
2022-02-10 18:17:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:18:00.037 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:18:00.037 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:18:00.035(Timestamp)
2022-02-10 18:18:00.048 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:19:00.028 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:19:00.028 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:19:00.026(Timestamp)
2022-02-10 18:19:00.048 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:20:00.040 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:20:00.041 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:20:00.039(Timestamp)
2022-02-10 18:20:00.052 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:21:00.208 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:21:00.208 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:21:00.206(Timestamp)
2022-02-10 18:21:00.241 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:22:00.033 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:22:00.034 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:22:00.03(Timestamp)
2022-02-10 18:22:00.045 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:23:00.034 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:23:00.034 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:23:00.032(Timestamp)
2022-02-10 18:23:00.048 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:24:00.035 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:24:00.036 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:24:00.034(Timestamp)
2022-02-10 18:24:00.046 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:25:00.031 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:25:00.031 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:25:00.03(Timestamp)
2022-02-10 18:25:00.042 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:26:00.031 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:26:00.031 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:26:00.03(Timestamp)
2022-02-10 18:26:00.041 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:26:50.646 [http-nio-8001-exec-1] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-02-10 18:26:50.646 [http-nio-8001-exec-1] INFO org.springframework.web.servlet.DispatcherServlet-Initializing Servlet 'dispatcherServlet'
2022-02-10 18:26:50.656 [http-nio-8001-exec-1] INFO org.springframework.web.servlet.DispatcherServlet-Completed initialization in 10 ms
2022-02-10 18:27:00.033 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:27:00.034 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:27:00.033(Timestamp)
2022-02-10 18:27:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:27:02.974 [http-nio-8001-exec-10] INFO com.fzm.portal.aop.LogAop-请求路径: /user/login,请求参数:[LoginParam(telephone=17620078872, email=null, password=123456, verificationCode=null, codetype=null)]
2022-02-10 18:27:02.998 [http-nio-8001-exec-10] 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-02-10 18:27:03.000 [http-nio-8001-exec-10] DEBUG com.fzm.common.mapper.UserMapper.selectOne-==> Parameters: 17620078872(String), 17620078872(String)
2022-02-10 18:27:03.014 [http-nio-8001-exec-10] DEBUG com.fzm.common.mapper.UserMapper.selectOne-<== Total: 1
2022-02-10 18:27:03.088 [http-nio-8001-exec-10] 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-02-10 18:27:03.089 [http-nio-8001-exec-10] DEBUG com.fzm.common.mapper.AuthPersonMapper.selectOne-==> Parameters: 2(Integer)
2022-02-10 18:27:03.099 [http-nio-8001-exec-10] DEBUG com.fzm.common.mapper.AuthPersonMapper.selectOne-<== Total: 1
2022-02-10 18:27:03.503 [http-nio-8001-exec-10] INFO com.fzm.portal.aop.LogAop-请求路径:/user/login,接口耗时:531ms
2022-02-10 18:27:34.549 [http-nio-8001-exec-9] INFO com.fzm.portal.aop.LogAop-请求路径: /nft/publishing-list,请求参数:[]
2022-02-10 18:27:34.582 [http-nio-8001-exec-9] DEBUG com.fzm.common.mapper.NftMapper.selectList-==> Preparing: SELECT id,category_id,user_id,publish_address,name,cover,author,evidencer,synopsis,file_hash,nft_id,nft_hash,token_id,publish_time,publish_status,transfer_hash,commemorate_id,is_top,status,is_entrust,is_commemorate,create_date,update_date,create_time,update_time FROM tb_nft WHERE (user_id = ? AND publish_status = ?) ORDER BY publish_time DESC
2022-02-10 18:27:34.586 [http-nio-8001-exec-9] DEBUG com.fzm.common.mapper.NftMapper.selectList-==> Parameters: 2(Integer), 1(Integer)
2022-02-10 18:27:34.596 [http-nio-8001-exec-9] DEBUG com.fzm.common.mapper.NftMapper.selectList-<== Total: 0
2022-02-10 18:27:34.616 [http-nio-8001-exec-9] INFO com.fzm.portal.aop.LogAop-请求路径:/nft/publishing-list,接口耗时:67ms
2022-02-10 18:28:00.046 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:28:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:28:00.045(Timestamp)
2022-02-10 18:28:00.062 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:28:10.580 [Thread-25] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 18:28:11.242 [Thread-25] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 18:28:11.258 [Thread-25] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 18:28:11.738 [Thread-25] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 18:28:12.016 [Thread-25] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-10 18:28:12.017 [Thread-25] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 18:28:12.017 [Thread-25] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 18:28:12.067 [Thread-25] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:28:12.219 [Thread-25] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-02-10 18:28:12.227 [Thread-25] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-02-10 18:28:12.709 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 55796 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-10 18:28:12.709 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 18:28:13.270 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 18:28:13.270 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 18:28:13.272 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-02-10 18:28:13.315 [restartedMain] WARN org.mybatis.spring.mapper.ClassPathMapperScanner-No MyBatis mapper was found in '[com.fzm.common.mapper]' package. Please check your configuration.
2022-02-10 18:28:13.596 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 18:28:13.596 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 18:28:13.597 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 18:28:13.597 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 18:28:13.635 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 18:28:13.636 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 918 ms
2022-02-10 18:28:13.661 [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@ce0a5c0]
2022-02-10 18:28:13.661 [restartedMain] INFO org.apache.catalina.core.StandardService-Stopping service [Tomcat]
2022-02-10 18:28:13.667 [restartedMain] INFO o.s.b.a.l.ConditionEvaluationReportLoggingListener-
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2022-02-10 18:28:13.681 [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@ce0a5c0]
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:19)
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@ce0a5c0]
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-02-10 18:28:17.082 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 55796 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-10 18:28:17.082 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 18:28:17.539 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 18:28:17.539 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 18:28:17.540 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 0ms. Found 0 Redis repository interfaces.
2022-02-10 18:28:17.752 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 18:28:17.753 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 18:28:17.753 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 18:28:17.753 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 18:28:17.791 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-1].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 18:28:17.791 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 704 ms
2022-02-10 18:28:17.842 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 18:28:18.904 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-2} inited
2022-02-10 18:28:19.866 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 18:28:19|2022-02-10 18:28:19|||0|
2022-02-10 18:28:19.866 [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-02-10 18:28:20.111 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 18:28:20.202 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 18:28:20.307 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:28:20.378 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 18:28:20.457 [redisson-netty-10-30] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:28:20.550 [redisson-netty-10-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:28:20.884 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 18:28:22.113 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-02-10 18:28:22.620 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 18:28:23.151 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 18:28:23.255 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 18:28:23.258 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 18:28:23.259 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 18:28:23.259 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 18:28:23.266 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 18:28:23.288 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 18:28:23.295 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 18:28:23.305 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 18:28:23.313 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 18:28:23.337 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 18:28:23.353 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 18:28:23.372 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 18:28:23.373 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 18:28:23.377 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 18:28:23.379 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 18:28:23.382 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 18:28:23.387 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 18:28:23.399 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 18:28:23.403 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 18:28:23.448 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 18:28:23.455 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 18:28:23.467 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 18:28:23.488 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 18:28:23.492 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 18:28:23.496 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 18:28:23.516 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 18:28:23.518 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 18:28:23.519 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 18:28:23.543 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 18:28:23.556 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 18:28:23.622 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#3d0ec33:0/SimpleConnection@47498dc6 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 58418]
2022-02-10 18:28:24.069 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 7.041 seconds (JVM running for 1321.555)
2022-02-10 18:28:24.072 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-02-10 18:29:00.048 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:29:00.049 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:29:00.047(Timestamp)
2022-02-10 18:29:00.067 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:31:33.834 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-02-10 18:31:33.863 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 56644 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-10 18:31:33.864 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 18:31:33.915 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-02-10 18:31:33.915 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-02-10 18:31:35.051 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 18:31:35.053 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 18:31:35.076 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 11ms. Found 0 Redis repository interfaces.
2022-02-10 18:31:36.007 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 18:31:36.014 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 18:31:36.015 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 18:31:36.015 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 18:31:36.141 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 18:31:36.141 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 2226 ms
2022-02-10 18:31:36.309 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 18:31:37.392 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-02-10 18:31:39.244 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 18:31:38|2022-02-10 18:31:39|||0|
2022-02-10 18:31:39.246 [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-02-10 18:31:39.614 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 18:31:39.706 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 18:31:39.813 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:31:39.950 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 18:31:41.013 [redisson-netty-4-22] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:31:41.122 [redisson-netty-4-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:31:41.498 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 18:31:41.893 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-02-10T10:31:41.893Z
2022-02-10 18:31:42.071 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-02-10T10:31:42.071Z
2022-02-10 18:31:42.720 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-02-10 18:31:43.036 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 18:31:43.447 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 18:31:43.610 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 18:31:43.623 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 18:31:43.624 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 18:31:43.639 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 18:31:43.668 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 18:31:43.791 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 18:31:43.797 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 18:31:43.811 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 18:31:43.827 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 18:31:43.857 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 18:31:43.876 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 18:31:43.897 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 18:31:43.898 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 18:31:43.903 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 18:31:43.904 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 18:31:43.906 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 18:31:43.911 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 18:31:43.919 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 18:31:43.922 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 18:31:43.948 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 18:31:43.956 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 18:31:43.974 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 18:31:43.983 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 18:31:43.985 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 18:31:43.987 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 18:31:43.997 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 18:31:43.998 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 18:31:43.998 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 18:31:44.021 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 18:31:44.039 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 18:31:44.135 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#7c1a2891:0/SimpleConnection@79aafb59 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 58560]
2022-02-10 18:31:44.625 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 11.231 seconds (JVM running for 12.44)
2022-02-10 18:31:56.451 [http-nio-8001-exec-1] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-02-10 18:31:56.451 [http-nio-8001-exec-1] INFO org.springframework.web.servlet.DispatcherServlet-Initializing Servlet 'dispatcherServlet'
2022-02-10 18:31:56.460 [http-nio-8001-exec-1] INFO org.springframework.web.servlet.DispatcherServlet-Completed initialization in 9 ms
2022-02-10 18:31:56.484 [http-nio-8001-exec-1] INFO com.fzm.portal.aop.LogAop-请求路径: /nft/publishing-list,请求参数:[]
2022-02-10 18:32:00.024 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.NftMapper.selectList-==> Preparing: SELECT id,category_id,user_id,publish_address,name,cover,author,evidencer,synopsis,file_hash,nft_id,nft_hash,token_id,publish_time,publish_status,transfer_hash,commemorate_id,is_top,status,is_entrust,is_commemorate,create_date,update_date,create_time,update_time FROM tb_nft WHERE (user_id = ? AND publish_status = ?) ORDER BY publish_time DESC
2022-02-10 18:32:00.065 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:32:00.130 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.NftMapper.selectList-==> Parameters: 2(Integer), 1(Integer)
2022-02-10 18:32:00.131 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:32:00.064(Timestamp)
2022-02-10 18:32:00.171 [http-nio-8001-exec-1] DEBUG com.fzm.common.mapper.NftMapper.selectList-<== Total: 0
2022-02-10 18:32:00.171 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:32:00.203 [http-nio-8001-exec-1] INFO com.fzm.portal.aop.LogAop-请求路径:/nft/publishing-list,接口耗时:3720ms
2022-02-10 18:32:40.206 [http-nio-8001-exec-2] INFO com.fzm.portal.aop.LogAop-请求路径: /nft/publishing-list,请求参数:[]
2022-02-10 18:32:43.453 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.NftMapper.selectList-==> Preparing: SELECT id,category_id,user_id,publish_address,name,cover,author,evidencer,synopsis,file_hash,nft_id,nft_hash,token_id,publish_time,publish_status,transfer_hash,commemorate_id,is_top,status,is_entrust,is_commemorate,create_date,update_date,create_time,update_time FROM tb_nft WHERE (user_id = ? AND publish_status = ?) ORDER BY publish_time DESC
2022-02-10 18:32:43.455 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.NftMapper.selectList-==> Parameters: 2(Integer), 1(Integer)
2022-02-10 18:32:43.471 [http-nio-8001-exec-2] DEBUG com.fzm.common.mapper.NftMapper.selectList-<== Total: 0
2022-02-10 18:32:43.502 [http-nio-8001-exec-2] INFO com.fzm.portal.aop.LogAop-请求路径:/nft/publishing-list,接口耗时:3296ms
2022-02-10 18:33:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:33:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:33:00.042(Timestamp)
2022-02-10 18:33:00.061 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:34:00.049 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:34:00.050 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:34:00.048(Timestamp)
2022-02-10 18:34:00.065 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:35:00.035 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:35:00.036 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:35:00.034(Timestamp)
2022-02-10 18:35:00.051 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:36:00.040 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:36:00.040 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:36:00.038(Timestamp)
2022-02-10 18:36:00.056 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:37:00.048 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:37:00.049 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:37:00.047(Timestamp)
2022-02-10 18:37:00.064 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:38:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:38:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:38:00.043(Timestamp)
2022-02-10 18:38:00.060 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:39:00.035 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:39:00.035 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:39:00.033(Timestamp)
2022-02-10 18:39:00.051 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:40:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:40:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:40:00.046(Timestamp)
2022-02-10 18:40:00.063 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:41:00.050 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:41:00.050 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:41:00.049(Timestamp)
2022-02-10 18:41:00.066 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:42:00.029 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:42:00.030 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:42:00.028(Timestamp)
2022-02-10 18:42:00.046 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:43:00.038 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:43:00.039 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:43:00.038(Timestamp)
2022-02-10 18:43:00.089 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:44:00.031 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:44:00.031 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:44:00.03(Timestamp)
2022-02-10 18:44:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:45:00.040 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:45:00.040 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:45:00.038(Timestamp)
2022-02-10 18:45:00.066 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:46:00.047 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:46:00.048 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:46:00.046(Timestamp)
2022-02-10 18:46:00.064 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:46:07.597 [Thread-24] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 18:46:07.829 [Thread-24] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 18:46:07.845 [Thread-24] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 18:46:08.618 [Thread-24] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 18:46:08.905 [Thread-24] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-10 18:46:08.906 [Thread-24] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 18:46:08.906 [Thread-24] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 18:46:08.951 [Thread-24] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:46:08.992 [Thread-24] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-02-10 18:46:08.997 [Thread-24] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-02-10 18:46:09.253 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 56644 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-10 18:46:09.253 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 18:46:09.698 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 18:46:09.698 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 18:46:09.701 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-02-10 18:46:10.036 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 18:46:10.037 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 18:46:10.037 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 18:46:10.037 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 18:46:10.077 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 18:46:10.077 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 820 ms
2022-02-10 18:46:10.135 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 18:46:10.957 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-2} inited
2022-02-10 18:46:11.710 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 18:46:11|2022-02-10 18:46:11|||0|
2022-02-10 18:46:11.710 [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-02-10 18:46:11.993 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 18:46:12.063 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 18:46:12.147 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:46:12.208 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 18:46:12.280 [redisson-netty-9-24] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:46:12.374 [redisson-netty-9-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:46:12.664 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 18:46:13.558 [restartedMain] INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping-Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2022-02-10 18:46:13.720 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 18:46:13.990 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 18:46:14.070 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 18:46:14.074 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 18:46:14.074 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 18:46:14.075 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 18:46:14.079 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 18:46:14.091 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 18:46:14.094 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 18:46:14.101 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 18:46:14.109 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 18:46:14.125 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 18:46:14.138 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 18:46:14.154 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 18:46:14.154 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 18:46:14.158 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 18:46:14.159 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 18:46:14.160 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 18:46:14.164 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 18:46:14.170 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 18:46:14.171 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 18:46:14.192 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 18:46:14.198 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 18:46:14.208 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 18:46:14.213 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 18:46:14.215 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 18:46:14.217 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 18:46:14.226 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 18:46:14.227 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 18:46:14.227 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 18:46:14.243 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 18:46:14.250 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 18:46:14.312 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#7cb6679:0/SimpleConnection@473c180b [delegate=amqp://guest@129.211.166.223:5672/, localPort= 58800]
2022-02-10 18:46:14.719 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 5.515 seconds (JVM running for 882.533)
2022-02-10 18:46:14.721 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-02-10 18:47:00.052 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:47:00.054 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:47:00.051(Timestamp)
2022-02-10 18:47:00.069 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:48:00.042 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:48:00.043 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:48:00.041(Timestamp)
2022-02-10 18:48:00.058 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:49:00.042 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:49:00.042 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:49:00.041(Timestamp)
2022-02-10 18:49:00.058 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:50:00.055 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:50:00.056 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:50:00.053(Timestamp)
2022-02-10 18:50:00.070 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:51:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:51:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:51:00.038(Timestamp)
2022-02-10 18:51:00.063 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:52:00.042 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Preparing: SELECT id,order_name,pay_scene,product_id,user_id,fee,order_status,pay_type,create_date,update_date FROM tb_order WHERE (order_status = ? AND create_date <= ?)
2022-02-10 18:52:00.043 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:52:00.04(Timestamp)
2022-02-10 18:52:00.058 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:52:20.175 [Thread-35] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 18:52:20.986 [Thread-35] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 18:52:21.001 [Thread-35] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 18:52:21.049 [Thread-35] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 18:52:21.484 [Thread-35] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-10 18:52:21.485 [Thread-35] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 18:52:21.485 [Thread-35] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 18:52:21.528 [Thread-35] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:52:21.551 [Thread-35] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-2} closing ...
2022-02-10 18:52:21.555 [Thread-35] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-2} closed
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