Commit ae45b327 authored by tangtuo's avatar tangtuo

新增删除超时草稿的定时任务

parent d1881a4b
...@@ -35,4 +35,12 @@ public interface DraftService extends IService<Draft> { ...@@ -35,4 +35,12 @@ public interface DraftService extends IService<Draft> {
* @return * @return
*/ */
Integer saveDraft(DraftDTO draft); Integer saveDraft(DraftDTO draft);
/**
* 查询超时的草稿
*
* @param minutes
* @return
*/
List<Draft> getTimeoutDrafts(int minutes);
} }
...@@ -19,6 +19,8 @@ import org.apache.commons.lang3.StringUtils; ...@@ -19,6 +19,8 @@ import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.time.Duration;
import java.time.Instant;
import java.util.List; import java.util.List;
/** /**
...@@ -108,4 +110,12 @@ public class DraftServiceImpl extends ServiceImpl<DraftMapper, Draft> implements ...@@ -108,4 +110,12 @@ public class DraftServiceImpl extends ServiceImpl<DraftMapper, Draft> implements
this.saveOrUpdate(d); this.saveOrUpdate(d);
return d.getId(); return d.getId();
} }
@Override
public List<Draft> getTimeoutDrafts(int minutes) {
Instant instant = Instant.now().minus(Duration.ofMinutes(minutes));
QueryWrapper<Draft> queryWrapper = new QueryWrapper<>();
queryWrapper.le("create_date", instant);
return this.list();
}
} }
...@@ -145,6 +145,7 @@ public class NftServiceImpl extends ServiceImpl<NftMapper, Nft> implements NftSe ...@@ -145,6 +145,7 @@ public class NftServiceImpl extends ServiceImpl<NftMapper, Nft> implements NftSe
} }
// 修改nft的发行状态为发行中 // 修改nft的发行状态为发行中
nft.setPublishStatus(PublishStatus.PUBLISHING.getCode()); nft.setPublishStatus(PublishStatus.PUBLISHING.getCode());
nft.setPublishTime(new Date());
this.updateById(nft); this.updateById(nft);
// 给mq发送一条消息,异步确认发行结果 // 给mq发送一条消息,异步确认发行结果
NftPublishMsg nftPublishMsg = new NftPublishMsg(hash, id, tokenId); NftPublishMsg nftPublishMsg = new NftPublishMsg(hash, id, tokenId);
......
...@@ -73,7 +73,6 @@ public class NftListener { ...@@ -73,7 +73,6 @@ public class NftListener {
} }
nft.setNftHash(realHash); nft.setNftHash(realHash);
nft.setTokenId(msg.getTokenId()); nft.setTokenId(msg.getTokenId());
nft.setPublishTime(new Date());
nft.setPublishStatus(PublishStatus.SUSSED.getCode()); nft.setPublishStatus(PublishStatus.SUSSED.getCode());
nftService.updateById(nft); nftService.updateById(nft);
// 如果用户是第一次发行作品,把用户的isPublish修改成1,并清空用户统计的缓存信息 // 如果用户是第一次发行作品,把用户的isPublish修改成1,并清空用户统计的缓存信息
......
package com.fzm.portal.schedule;
import com.fzm.common.entity.Draft;
import com.fzm.common.service.DraftService;
import lombok.extern.slf4j.Slf4j;
import org.redisson.Redisson;
import org.redisson.api.RLock;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.util.List;
import java.util.concurrent.TimeUnit;
/**
* @author tangtuo
* @date 2022/2/10 19:39
*/
@Slf4j
@Component
public class DraftTask {
@Resource
private DraftService draftService;
@Resource
private Redisson redisson;
/**
* 删除创建时间大于7天的草稿
*/
@Scheduled(cron = "0 */15 * * * ?")
public void deleteTimeoutDraft() throws InterruptedException {
RLock lock = redisson.getLock("delete-draft");
// 加锁,避免集群环境下多个节点同事运行此定时任务
if (!lock.tryLock(30, TimeUnit.SECONDS)) {
log.warn("删除超时草稿的任务正在运行中");
return;
}
try {
// 查询创建时间大于一周的草稿
List<Draft> list = draftService.getTimeoutDrafts(60 * 24 * 7);
for (Draft draft : list) {
Integer id = draft.getId();
log.info("即将删掉草稿,草稿id为 : {}", id);
draftService.delete(id);
}
} finally {
lock.unlock();
}
}
}
...@@ -41,12 +41,12 @@ public class PayTask { ...@@ -41,12 +41,12 @@ public class PayTask {
/** /**
* 定时关单的任务 * 定时关单的任务
*/ */
@Scheduled(cron = "0 */1 * * * ?") @Scheduled(cron = "0 */5 * * * ?")
public void closeOrder() throws InterruptedException { public void closeOrder() throws InterruptedException {
RLock lock = redisson.getLock("close-order"); RLock lock = redisson.getLock("close-order");
// 加锁,避免集群环境下多个节点同事运行此定时任务 // 加锁,避免集群环境下多个节点同事运行此定时任务
if (!lock.tryLock(30, TimeUnit.SECONDS)) { if (!lock.tryLock(30, TimeUnit.SECONDS)) {
log.warn("任务正在运行中"); log.warn("关单任务正在运行中");
return; return;
} }
try { try {
......
...@@ -2156,3 +2156,419 @@ Caused by: java.io.FileNotFoundException: class path resource [com/fzm/portal/ao ...@@ -2156,3 +2156,419 @@ Caused by: java.io.FileNotFoundException: class path resource [com/fzm/portal/ao
2022-02-09 16:53:05.528 [Thread-101] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor' 2022-02-09 16:53:05.528 [Thread-101] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-09 16:53:05.544 [Thread-101] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-15} closing ... 2022-02-09 16:53:05.544 [Thread-101] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-15} closing ...
2022-02-09 16:53:05.545 [Thread-101] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-15} closed 2022-02-09 16:53:05.545 [Thread-101] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-15} closed
2022-02-09 16:53:05.955 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 44344 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-09 16:53:05.955 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-09 16:53:06.361 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-09 16:53:06.361 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-09 16:53:06.365 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 3ms. Found 0 Redis repository interfaces.
2022-02-09 16:53:06.653 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-09 16:53:06.654 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-09 16:53:06.654 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-09 16:53:06.654 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-09 16:53:06.690 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-10].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-09 16:53:06.690 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 732 ms
2022-02-09 16:53:06.778 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-09 16:53:07.708 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-16} inited
2022-02-09 16:53:08.523 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-09 16:53:08|2022-02-09 16:53:08|||0|
2022-02-09 16:53:08.524 [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-09 16:53:08.767 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-09 16:53:08.856 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-09 16:53:08.929 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-09 16:53:09.006 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-09 16:53:09.106 [redisson-netty-61-25] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 16:53:09.276 [redisson-netty-61-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 16:53:09.555 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-02-09 16:53:10.287 [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-09 16:53:10.448 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-09 16:53:10.702 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-09 16:53:10.782 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-09 16:53:10.784 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-09 16:53:10.785 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-09 16:53:10.785 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-09 16:53:10.790 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-09 16:53:10.799 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-09 16:53:10.801 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-09 16:53:10.805 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-09 16:53:10.812 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-09 16:53:10.825 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-09 16:53:10.837 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-09 16:53:10.847 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-09 16:53:10.848 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-09 16:53:10.851 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-09 16:53:10.853 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-09 16:53:10.854 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-09 16:53:10.856 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-09 16:53:10.860 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-09 16:53:10.861 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-09 16:53:10.875 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-09 16:53:10.878 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-09 16:53:10.886 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-09 16:53:10.891 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-09 16:53:10.892 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-09 16:53:10.893 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-09 16:53:10.899 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-09 16:53:10.899 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-09 16:53:10.900 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-09 16:53:10.912 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-09 16:53:10.918 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-09 16:53:10.965 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#3f326c91:0/SimpleConnection@14fc8d75 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 63834]
2022-02-09 16:53:11.271 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 5.355 seconds (JVM running for 8909.061)
2022-02-09 16:53:11.273 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-02-09 16:54:27.441 [Thread-111] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-09 16:54:27.920 [Thread-111] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-09 16:54:27.932 [Thread-111] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-09 16:54:28.026 [Thread-111] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-09 16:54:28.288 [Thread-111] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-09 16:54:28.289 [Thread-111] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-09 16:54:28.289 [Thread-111] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-09 16:54:28.289 [scheduling-1] ERROR o.s.s.support.TaskUtils$LoggingErrorHandler-Unexpected error occurred in scheduled task
java.lang.InterruptedException: null
at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedNanos(AbstractQueuedSynchronizer.java:1039)
at java.util.concurrent.locks.AbstractQueuedSynchronizer.tryAcquireSharedNanos(AbstractQueuedSynchronizer.java:1328)
at java.util.concurrent.Semaphore.tryAcquire(Semaphore.java:409)
at org.redisson.RedissonLock.tryLock(RedissonLock.java:275)
at org.redisson.RedissonLock.tryLock(RedissonLock.java:300)
at com.fzm.portal.schedule.PayTask.closeOrder(PayTask.java:48)
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.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84)
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266)
at java.util.concurrent.FutureTask.run(FutureTask.java)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
2022-02-09 16:54:28.323 [Thread-111] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-09 16:54:28.338 [Thread-111] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-16} closing ...
2022-02-09 16:54:28.340 [Thread-111] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-16} closed
2022-02-09 16:54:28.737 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 44344 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-09 16:54:28.737 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-09 16:54:29.374 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-09 16:54:29.374 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-09 16:54:29.378 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 3ms. Found 0 Redis repository interfaces.
2022-02-09 16:54:29.462 [restartedMain] WARN org.mybatis.spring.mapper.ClassPathMapperScanner-No MyBatis mapper was found in '[com.fzm.common.mapper]' package. Please check your configuration.
2022-02-09 16:54:29.781 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-09 16:54:29.781 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-09 16:54:29.781 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-09 16:54:29.781 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-09 16:54:29.821 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-10].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-09 16:54:29.821 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 1081 ms
2022-02-09 16:54:29.843 [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@583884f1]
2022-02-09 16:54:29.843 [restartedMain] INFO org.apache.catalina.core.StandardService-Stopping service [Tomcat]
2022-02-09 16:54:29.848 [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-09 16:54:29.849 [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@583884f1]
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@583884f1]
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-09 16:54:34.057 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 44344 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-09 16:54:34.057 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-09 16:54:36.571 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-09 16:54:36.572 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-09 16:54:36.574 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-02-09 16:54:36.759 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-09 16:54:36.759 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-09 16:54:36.759 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-09 16:54:36.760 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-09 16:54:36.802 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-11].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-09 16:54:36.803 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 2741 ms
2022-02-09 16:54:36.853 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-09 16:54:37.859 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-17} inited
2022-02-09 16:54:38.685 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-09 16:54:38|2022-02-09 16:54:38|||0|
2022-02-09 16:54:38.685 [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-09 16:54:38.936 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-09 16:54:39.050 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-09 16:54:39.139 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-09 16:54:39.198 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-09 16:54:39.277 [redisson-netty-66-26] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 16:54:39.372 [redisson-netty-66-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 16:54:39.660 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-02-09 16:54:40.478 [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-09 16:54:40.641 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-09 16:54:41.002 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-09 16:54:41.087 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-09 16:54:41.100 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-09 16:54:41.101 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-09 16:54:41.102 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-09 16:54:41.107 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-09 16:54:41.122 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-09 16:54:41.124 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-09 16:54:41.129 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-09 16:54:41.136 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-09 16:54:41.150 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-09 16:54:41.161 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-09 16:54:41.173 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-09 16:54:41.174 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-09 16:54:41.177 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-09 16:54:41.178 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-09 16:54:41.180 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-09 16:54:41.182 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-09 16:54:41.186 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-09 16:54:41.188 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-09 16:54:41.204 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-09 16:54:41.209 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-09 16:54:41.216 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-09 16:54:41.221 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-09 16:54:41.222 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-09 16:54:41.224 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-09 16:54:41.232 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-09 16:54:41.233 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-09 16:54:41.234 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-09 16:54:41.247 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-09 16:54:41.252 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-09 16:54:41.303 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#3768363c:0/SimpleConnection@7cc08491 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 63949]
2022-02-09 16:54:41.620 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 7.601 seconds (JVM running for 8999.41)
2022-02-09 16:54:41.622 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-02-09 16:55:30.020 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:06:40.862 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 44344 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-09 17:06:40.862 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-09 17:06:41.290 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-09 17:06:41.290 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-09 17:06:41.292 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-02-09 17:06:41.572 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-09 17:06:41.572 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-09 17:06:41.572 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-09 17:06:41.572 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-09 17:06:41.608 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-11].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-09 17:06:41.608 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 742 ms
2022-02-09 17:06:41.680 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-09 17:06:43.072 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-18} inited
2022-02-09 17:06:43.819 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-09 17:06:43|2022-02-09 17:06:43|||0|
2022-02-09 17:06:43.819 [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-09 17:06:44.066 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-09 17:06:44.136 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-09 17:06:44.237 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-09 17:06:44.294 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-09 17:06:44.417 [redisson-netty-71-23] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 17:06:45.361 [redisson-netty-71-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 17:06:45.659 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-02-09 17:06:46.429 [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-09 17:06:46.572 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-09 17:06:46.822 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-09 17:06:46.898 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-09 17:06:46.900 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-09 17:06:46.900 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-09 17:06:46.901 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-09 17:06:46.905 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-09 17:06:46.913 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-09 17:06:46.915 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-09 17:06:46.919 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-09 17:06:46.925 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-09 17:06:46.938 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-09 17:06:46.948 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-09 17:06:46.958 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-09 17:06:46.959 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-09 17:06:46.962 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-09 17:06:46.962 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-09 17:06:46.963 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-09 17:06:46.965 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-09 17:06:46.969 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-09 17:06:46.970 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-09 17:06:46.985 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-09 17:06:46.988 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-09 17:06:46.995 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-09 17:06:46.999 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-09 17:06:47.001 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-09 17:06:47.002 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-09 17:06:47.008 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-09 17:06:47.008 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-09 17:06:47.008 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-09 17:06:47.020 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-09 17:06:47.026 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-09 17:06:47.084 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#7a9b7905:0/SimpleConnection@219d461e [delegate=amqp://guest@129.211.166.223:5672/, localPort= 64213]
2022-02-09 17:06:47.442 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 6.619 seconds (JVM running for 9725.231)
2022-02-09 17:06:47.443 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-02-09 17:07:30.003 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:08:30.016 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:09:30.014 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:10:30.001 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:11:30.025 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:12:30.029 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:13:30.011 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:14:30.027 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:15:30.027 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:16:30.021 [scheduling-1] WARN com.fzm.portal.schedule.PayTask-此任务正在运行中
2022-02-09 17:16:47.475 [Thread-124] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-09 17:16:48.008 [Thread-124] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-09 17:16:48.022 [Thread-124] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-09 17:16:48.087 [Thread-124] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-09 17:16:48.363 [Thread-124] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-09 17:16:48.364 [Thread-124] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-09 17:16:48.364 [Thread-124] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-09 17:16:48.394 [Thread-124] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-09 17:16:48.415 [Thread-124] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-18} closing ...
2022-02-09 17:16:48.417 [Thread-124] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-18} closed
2022-02-09 17:16:48.790 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 44344 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-09 17:16:48.790 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-09 17:16:49.608 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-09 17:16:49.608 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-09 17:16:49.612 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 3ms. Found 0 Redis repository interfaces.
2022-02-09 17:16:49.695 [restartedMain] WARN org.mybatis.spring.mapper.ClassPathMapperScanner-No MyBatis mapper was found in '[com.fzm.common.mapper]' package. Please check your configuration.
2022-02-09 17:16:50.076 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-09 17:16:50.077 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-09 17:16:50.077 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-09 17:16:50.077 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-09 17:16:50.118 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-11].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-09 17:16:50.118 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 1324 ms
2022-02-09 17:16:50.181 [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@901981e]
2022-02-09 17:16:50.182 [restartedMain] INFO org.apache.catalina.core.StandardService-Stopping service [Tomcat]
2022-02-09 17:16:50.207 [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-09 17:16:50.207 [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@901981e]
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@901981e]
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-09 17:16:54.908 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 44344 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-09 17:16:54.908 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-09 17:16:57.533 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-09 17:16:57.533 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-09 17:16:57.536 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 3ms. Found 0 Redis repository interfaces.
2022-02-09 17:16:57.728 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-09 17:16:57.729 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-09 17:16:57.729 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-09 17:16:57.729 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-09 17:16:57.769 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-12].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-09 17:16:57.769 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 2858 ms
2022-02-09 17:16:57.827 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-09 17:16:58.885 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-19} inited
2022-02-09 17:16:59.712 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-09 17:16:59|2022-02-09 17:16:59|||0|
2022-02-09 17:16:59.712 [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-09 17:16:59.994 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-09 17:17:00.085 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-09 17:17:00.176 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-09 17:17:00.250 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-09 17:17:00.407 [redisson-netty-76-1] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 17:17:00.499 [redisson-netty-76-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-09 17:17:00.793 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772161
2022-02-09 17:17:01.548 [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-09 17:17:01.736 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-09 17:17:02.062 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-09 17:17:02.146 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-09 17:17:02.147 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-09 17:17:02.148 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-09 17:17:02.148 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-09 17:17:02.154 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-09 17:17:02.164 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-09 17:17:02.166 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-09 17:17:02.171 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-09 17:17:02.177 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-09 17:17:02.191 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-09 17:17:02.202 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-09 17:17:02.213 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-09 17:17:02.213 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-09 17:17:02.217 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-09 17:17:02.217 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-09 17:17:02.218 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-09 17:17:02.220 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-09 17:17:02.225 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-09 17:17:02.226 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-09 17:17:02.242 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-09 17:17:02.245 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-09 17:17:02.253 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-09 17:17:02.258 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-09 17:17:02.259 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-09 17:17:02.261 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-09 17:17:02.266 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-09 17:17:02.266 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-09 17:17:02.267 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-09 17:17:02.281 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-09 17:17:02.287 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-09 17:17:02.353 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#3718ffc1:0/SimpleConnection@2f83ab0b [delegate=amqp://guest@129.211.166.223:5672/, localPort= 64422]
2022-02-09 17:17:02.765 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 7.894 seconds (JVM running for 10340.555)
2022-02-09 17:17:02.767 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
...@@ -494,3 +494,543 @@ Caused by: java.lang.ClassNotFoundException: com.fzm.common.model.ResponseModel ...@@ -494,3 +494,543 @@ Caused by: java.lang.ClassNotFoundException: com.fzm.common.model.ResponseModel
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.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.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 2022-02-10 18:52:21.555 [Thread-35] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-2} closed
2022-02-10 18:52:21.979 [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:52:21.979 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 18:52:22.757 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 18:52:22.758 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 18:52:22.761 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 3ms. Found 0 Redis repository interfaces.
2022-02-10 18:52:23.323 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 18:52:23.324 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 18:52:23.325 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 18:52:23.325 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 18:52:23.400 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 18:52:23.400 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 1413 ms
2022-02-10 18:52:23.489 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 18:52:24.479 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-3} inited
2022-02-10 18:52:25.626 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 18:52:25|2022-02-10 18:52:25|||0|
2022-02-10 18:52:25.627 [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:52:26.120 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 18:52:26.240 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 18:52:26.314 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 18:52:26.388 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 18:52:26.466 [redisson-netty-14-18] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:52:26.576 [redisson-netty-14-17] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 18:52:27.092 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 18:52:28.282 [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:52:28.457 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 18:52:28.821 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 18:52:28.905 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 18:52:28.909 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 18:52:28.909 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 18:52:28.910 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 18:52:28.915 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 18:52:28.927 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 18:52:28.930 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 18:52:28.937 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 18:52:28.944 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 18:52:28.963 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 18:52:28.976 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 18:52:28.992 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 18:52:28.993 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 18:52:28.996 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 18:52:28.997 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 18:52:28.999 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 18:52:29.004 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 18:52:29.009 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 18:52:29.010 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 18:52:29.029 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 18:52:29.035 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 18:52:29.043 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 18:52:29.051 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 18:52:29.054 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 18:52:29.057 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 18:52:29.072 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 18:52:29.073 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 18:52:29.074 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 18:52:29.108 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 18:52:29.118 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 18:52:29.192 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#73eaeb61:0/SimpleConnection@1a850cc2 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 58981]
2022-02-10 18:52:29.689 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 7.81 seconds (JVM running for 1257.504)
2022-02-10 18:52:29.693 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-02-10 18:53:00.057 [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:53:00.059 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:53:00.055(Timestamp)
2022-02-10 18:53:00.088 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:54: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:54:00.040 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:54:00.037(Timestamp)
2022-02-10 18:54:00.059 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:55: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:55:00.049 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:55:00.047(Timestamp)
2022-02-10 18:55:00.069 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:56: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:56:00.050 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:56:00.047(Timestamp)
2022-02-10 18:56:00.069 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:57:00.045 [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:57:00.045 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:57:00.043(Timestamp)
2022-02-10 18:57:00.064 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:58: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:58:00.048 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:58:00.045(Timestamp)
2022-02-10 18:58:00.079 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 18:59: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:59:00.043 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 18:59:00.041(Timestamp)
2022-02-10 18:59:00.064 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:00:00.045 [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 19:00:00.046 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:00:00.043(Timestamp)
2022-02-10 19:00:00.064 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:01: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 19:01:00.050 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:01:00.047(Timestamp)
2022-02-10 19:01:00.068 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:02: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 19:02:00.051 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:02:00.047(Timestamp)
2022-02-10 19:02:00.069 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:03: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 19:03:00.046 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:03:00.043(Timestamp)
2022-02-10 19:03:00.065 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:04: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 19:04:00.056 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:04:00.054(Timestamp)
2022-02-10 19:04:00.074 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:05: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 19:05:00.041 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:05:00.039(Timestamp)
2022-02-10 19:05:00.059 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:06: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 19:06:00.049 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:06:00.045(Timestamp)
2022-02-10 19:06:00.067 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:07: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 19:07:00.044 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:07:00.042(Timestamp)
2022-02-10 19:07:00.062 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:08:00.045 [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 19:08:00.046 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:08:00.043(Timestamp)
2022-02-10 19:08:00.064 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:09:00.053 [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 19:09:00.053 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:09:00.051(Timestamp)
2022-02-10 19:09:00.072 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:10: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 19:10:00.043 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:10:00.04(Timestamp)
2022-02-10 19:10:00.061 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:11: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 19:11:00.045 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:11:00.042(Timestamp)
2022-02-10 19:11:00.063 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:11:49.622 [Thread-40] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 19:11:50.117 [Thread-40] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 19:11:50.157 [Thread-40] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 19:11:51.161 [Thread-40] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 19:11:51.438 [Thread-40] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-10 19:11:51.438 [Thread-40] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 19:11:51.439 [Thread-40] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 19:11:51.954 [Thread-40] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-10 19:11:52.016 [Thread-40] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-3} closing ...
2022-02-10 19:11:52.072 [Thread-40] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-3} closed
2022-02-10 19:11:52.740 [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 19:11:52.740 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 19:11:53.560 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 19:11:53.560 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 19:11:53.563 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-02-10 19:11:53.620 [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 19:11:53.952 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 19:11:53.953 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 19:11:53.953 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 19:11:53.953 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 19:11:54.025 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 19:11:54.025 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 1275 ms
2022-02-10 19:11:54.056 [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@3e023148]
2022-02-10 19:11:54.056 [restartedMain] INFO org.apache.catalina.core.StandardService-Stopping service [Tomcat]
2022-02-10 19:11:54.062 [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 19:11:54.076 [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@3e023148]
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@3e023148]
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 19:11:58.758 [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 19:11:58.758 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 19:12:01.831 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 19:12:01.831 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 19:12:01.833 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 2ms. Found 0 Redis repository interfaces.
2022-02-10 19:12:02.063 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 19:12:02.063 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 19:12:02.064 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 19:12:02.064 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 19:12:02.108 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-1].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 19:12:02.108 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 3347 ms
2022-02-10 19:12:02.170 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 19:12:04.011 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-4} inited
2022-02-10 19:12:05.028 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 19:12:05|2022-02-10 19:12:05|||0|
2022-02-10 19:12:05.028 [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 19:12:05.328 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 19:12:05.492 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 19:12:05.584 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 19:12:05.659 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 19:12:05.736 [redisson-netty-19-19] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 19:12:05.833 [redisson-netty-19-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 19:12:06.205 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 19:12:07.557 [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 19:12:07.749 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 19:12:08.125 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 19:12:08.232 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 19:12:08.235 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 19:12:08.236 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 19:12:08.237 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 19:12:08.245 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 19:12:08.261 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 19:12:08.264 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 19:12:08.270 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 19:12:08.278 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 19:12:08.294 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 19:12:08.308 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 19:12:08.324 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 19:12:08.325 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 19:12:08.329 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 19:12:08.329 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 19:12:08.331 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 19:12:08.333 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 19:12:08.340 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 19:12:08.342 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 19:12:08.363 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 19:12:08.368 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 19:12:08.376 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 19:12:08.381 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 19:12:08.382 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 19:12:08.384 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 19:12:08.392 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 19:12:08.393 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 19:12:08.393 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 19:12:08.411 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 19:12:08.417 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 19:12:08.465 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#6244a7a:0/SimpleConnection@479687ff [delegate=amqp://guest@129.211.166.223:5672/, localPort= 59351]
2022-02-10 19:12:08.809 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 10.095 seconds (JVM running for 2436.624)
2022-02-10 19:12:08.812 [restartedMain] INFO o.s.b.d.a.ConditionEvaluationDeltaLoggingListener-Condition evaluation unchanged
2022-02-10 19:50:01.465 [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 19:50:01.466 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 19:50:02.204 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 19:50:02.204 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 19:50:02.207 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 3ms. Found 0 Redis repository interfaces.
2022-02-10 19:50:02.654 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 19:50:02.654 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 19:50:02.655 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 19:50:02.655 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 19:50:02.719 [restartedMain] INFO o.a.c.c.ContainerBase.[Tomcat-1].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 19:50:02.719 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 1247 ms
2022-02-10 19:50:02.790 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 19:50:03.709 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-5} inited
2022-02-10 19:50:04.606 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 19:50:04|2022-02-10 19:50:04|||0|
2022-02-10 19:50:04.606 [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 19:50:04.930 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 19:50:05.035 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 19:50:05.162 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 19:50:05.237 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 19:50:05.324 [redisson-netty-24-31] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 19:50:05.413 [redisson-netty-24-19] INFO org.redisson.connection.pool.MasterConnectionPool-24 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 19:50:05.446 [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 'collectionController': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'nftServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'copyrightApplyServiceImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.fzm.common.service.DraftService' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@javax.annotation.Resource(shareable=true, lookup=, name=, description=, authenticationType=CONTAINER, type=class java.lang.Object, mappedName=)}
2022-02-10 19:50:05.480 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-10 19:50:05.483 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-5} closing ...
2022-02-10 19:50:05.485 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-5} closed
2022-02-10 19:50:05.485 [restartedMain] INFO org.apache.catalina.core.StandardService-Stopping service [Tomcat]
2022-02-10 19:50:05.490 [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 19:50:05.663 [restartedMain] ERROR o.s.b.diagnostics.LoggingFailureAnalysisReporter-
***************************
APPLICATION FAILED TO START
***************************
Description:
A component required a bean of type 'com.fzm.common.service.DraftService' that could not be found.
Action:
Consider defining a bean of type 'com.fzm.common.service.DraftService' in your configuration.
2022-02-10 19:54:43.167 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-02-10 19:54:43.204 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 57156 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-10 19:54:43.205 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 19:54:43.261 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-02-10 19:54:43.261 [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 19:54:44.613 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 19:54:44.614 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 19:54:44.640 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 13ms. Found 0 Redis repository interfaces.
2022-02-10 19:54:46.206 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 19:54:46.224 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 19:54:46.227 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 19:54:46.227 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 19:54:46.490 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 19:54:46.491 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 3229 ms
2022-02-10 19:54:46.669 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 19:54:48.005 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-02-10 19:54:51.562 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 19:54:50|2022-02-10 19:54:51|||0|
2022-02-10 19:54:51.564 [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 19:54:52.108 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 19:54:52.322 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 19:54:52.615 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 19:54:52.860 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 19:54:54.250 [redisson-netty-4-23] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 19:54:54.351 [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 19:54:55.019 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 19:54:55.607 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-02-10T11:54:55.607Z
2022-02-10 19:54:55.799 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-02-10T11:54:55.799Z
2022-02-10 19:54:56.651 [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 19:54:56.953 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 19:54:57.494 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 19:54:57.837 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 19:54:57.858 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 19:54:57.861 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 19:54:57.897 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 19:54:57.982 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 19:54:58.185 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 19:54:58.203 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 19:54:58.251 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 19:54:58.309 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 19:54:58.341 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 19:54:58.361 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 19:54:58.384 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 19:54:58.385 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 19:54:58.390 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 19:54:58.391 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 19:54:58.392 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 19:54:58.401 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 19:54:58.416 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 19:54:58.419 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 19:54:58.451 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 19:54:58.460 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 19:54:58.485 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 19:54:58.493 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 19:54:58.496 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 19:54:58.499 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 19:54:58.510 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 19:54:58.511 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 19:54:58.511 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 19:54:58.537 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 19:54:58.572 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 19:54:58.713 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#296f67c4:0/SimpleConnection@2e610571 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 53053]
2022-02-10 19:54:59.227 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 16.561 seconds (JVM running for 18.25)
2022-02-10 19:55:00.190 [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 19:55:00.313 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 19:55:00.104(Timestamp)
2022-02-10 19:55:00.360 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 19:55:10.505 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-==> Preparing: SELECT id,user_id,content,json,step,create_date,update_date FROM tb_draft
2022-02-10 19:55:10.509 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-==> Parameters:
2022-02-10 19:55:10.619 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-<== Total: 4
2022-02-10 19:55:14.918 [scheduling-1] INFO com.fzm.portal.schedule.DraftTask-即将删掉草稿,草稿id为 : 2
2022-02-10 19:55:16.668 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Preparing: SELECT id,user_id,content,json,step,create_date,update_date FROM tb_draft WHERE id=?
2022-02-10 19:55:16.676 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Parameters: 2(Integer)
2022-02-10 19:55:16.706 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-<== Total: 1
2022-02-10 19:55:18.448 [scheduling-1] INFO com.obs.services.internal.RestStorageService-OkHttp cost 1131 ms to apply http request
2022-02-10 19:55:18.492 [scheduling-1] INFO com.obs.services.internal.RestStorageService-Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:17|2022-02-10 19:55:18||[responseCode: 200][request-id: 0000017EE37CDE1998C729211D0313B8]|0|
2022-02-10 19:55:18.723 [scheduling-1] INFO com.obs.services.internal.RestStorageService-OkHttp cost 111 ms to apply http request
2022-02-10 19:55:18.726 [scheduling-1] INFO com.obs.services.internal.RestStorageService-Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:18|2022-02-10 19:55:18||[responseCode: 204][request-id: 0000017EE37CDF2D98C72D6464AE4893]|0|
2022-02-10 19:55:18.741 [scheduling-1] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:17|2022-02-10 19:55:18|||0|
2022-02-10 19:55:18.744 [scheduling-1] INFO com.obs.services.ObsClient-ObsClient [deleteObject] cost 1471 ms
2022-02-10 19:55:18.746 [scheduling-1] INFO com.obs.log.AccessLogger-2022-02-10 19:55:18 449|com.obs.services.internal.RestStorageService|performRequest|672|OkHttp cost 1131 ms to apply http request
2022-02-10 19:55:18 494|com.obs.services.internal.RestStorageService|performRequest|819|Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:17|2022-02-10 19:55:18||[responseCode: 200][request-id: 0000017EE37CDE1998C729211D0313B8]|0|
2022-02-10 19:55:18 724|com.obs.services.internal.RestStorageService|performRequest|672|OkHttp cost 111 ms to apply http request
2022-02-10 19:55:18 728|com.obs.services.internal.RestStorageService|performRequest|819|Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:18|2022-02-10 19:55:18||[responseCode: 204][request-id: 0000017EE37CDF2D98C72D6464AE4893]|0|
2022-02-10 19:55:18 742|com.obs.services.ObsClient|doActionWithResult|3933|Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:17|2022-02-10 19:55:18|||0|
2022-02-10 19:55:18 744|com.obs.services.ObsClient|doActionWithResult|3934|ObsClient [deleteObject] cost 1471 ms
2022-02-10 19:55:18.750 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Preparing: DELETE FROM tb_draft WHERE id=?
2022-02-10 19:55:18.769 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Parameters: 2(Integer)
2022-02-10 19:55:18.808 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-<== Updates: 1
2022-02-10 19:55:23.099 [scheduling-1] INFO com.fzm.portal.schedule.DraftTask-即将删掉草稿,草稿id为 : 36
2022-02-10 19:55:23.812 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Preparing: SELECT id,user_id,content,json,step,create_date,update_date FROM tb_draft WHERE id=?
2022-02-10 19:55:23.815 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Parameters: 36(Integer)
2022-02-10 19:55:23.852 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-<== Total: 1
2022-02-10 19:55:23.864 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Preparing: DELETE FROM tb_draft WHERE id=?
2022-02-10 19:55:23.865 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Parameters: 36(Integer)
2022-02-10 19:55:23.901 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-<== Updates: 1
2022-02-10 19:55:26.240 [scheduling-1] INFO com.fzm.portal.schedule.DraftTask-即将删掉草稿,草稿id为 : 45
2022-02-10 19:55:26.409 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Preparing: SELECT id,user_id,content,json,step,create_date,update_date FROM tb_draft WHERE id=?
2022-02-10 19:55:26.410 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Parameters: 45(Integer)
2022-02-10 19:55:26.453 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-<== Total: 1
2022-02-10 19:55:26.520 [scheduling-1] INFO com.obs.services.internal.RestStorageService-OkHttp cost 42 ms to apply http request
2022-02-10 19:55:26.523 [scheduling-1] INFO com.obs.services.internal.RestStorageService-Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFDD698C7A4BC20F956FF]|0|
2022-02-10 19:55:26.535 [scheduling-1] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26.538 [scheduling-1] INFO com.obs.services.ObsClient-ObsClient [deleteObject] cost 68 ms
2022-02-10 19:55:26.540 [scheduling-1] INFO com.obs.log.AccessLogger-2022-02-10 19:55:26 521|com.obs.services.internal.RestStorageService|performRequest|672|OkHttp cost 42 ms to apply http request
2022-02-10 19:55:26 525|com.obs.services.internal.RestStorageService|performRequest|819|Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFDD698C7A4BC20F956FF]|0|
2022-02-10 19:55:26 536|com.obs.services.ObsClient|doActionWithResult|3933|Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26 539|com.obs.services.ObsClient|doActionWithResult|3934|ObsClient [deleteObject] cost 68 ms
2022-02-10 19:55:26.630 [scheduling-1] INFO com.obs.services.internal.RestStorageService-OkHttp cost 74 ms to apply http request
2022-02-10 19:55:26.634 [scheduling-1] INFO com.obs.services.internal.RestStorageService-Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFE4698C7A596FDAF0845]|0|
2022-02-10 19:55:26.651 [scheduling-1] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26.654 [scheduling-1] INFO com.obs.services.ObsClient-ObsClient [deleteObject] cost 111 ms
2022-02-10 19:55:26.656 [scheduling-1] INFO com.obs.log.AccessLogger-2022-02-10 19:55:26 631|com.obs.services.internal.RestStorageService|performRequest|672|OkHttp cost 74 ms to apply http request
2022-02-10 19:55:26 635|com.obs.services.internal.RestStorageService|performRequest|819|Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFE4698C7A596FDAF0845]|0|
2022-02-10 19:55:26 652|com.obs.services.ObsClient|doActionWithResult|3933|Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26 655|com.obs.services.ObsClient|doActionWithResult|3934|ObsClient [deleteObject] cost 111 ms
2022-02-10 19:55:26.710 [scheduling-1] INFO com.obs.services.internal.RestStorageService-OkHttp cost 43 ms to apply http request
2022-02-10 19:55:26.713 [scheduling-1] INFO com.obs.services.internal.RestStorageService-Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFE9798C7A74F8AF217DC]|0|
2022-02-10 19:55:26.724 [scheduling-1] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26.727 [scheduling-1] INFO com.obs.services.ObsClient-ObsClient [deleteObject] cost 69 ms
2022-02-10 19:55:26.729 [scheduling-1] INFO com.obs.log.AccessLogger-2022-02-10 19:55:26 711|com.obs.services.internal.RestStorageService|performRequest|672|OkHttp cost 43 ms to apply http request
2022-02-10 19:55:26 714|com.obs.services.internal.RestStorageService|performRequest|819|Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFE9798C7A74F8AF217DC]|0|
2022-02-10 19:55:26 725|com.obs.services.ObsClient|doActionWithResult|3933|Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26 728|com.obs.services.ObsClient|doActionWithResult|3934|ObsClient [deleteObject] cost 69 ms
2022-02-10 19:55:26.773 [scheduling-1] INFO com.obs.services.internal.RestStorageService-OkHttp cost 26 ms to apply http request
2022-02-10 19:55:26.774 [scheduling-1] INFO com.obs.services.internal.RestStorageService-Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFED598C7A8492883443E]|0|
2022-02-10 19:55:26.780 [scheduling-1] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26.782 [scheduling-1] INFO com.obs.services.ObsClient-ObsClient [deleteObject] cost 51 ms
2022-02-10 19:55:26.783 [scheduling-1] INFO com.obs.log.AccessLogger-2022-02-10 19:55:26 773|com.obs.services.internal.RestStorageService|performRequest|672|OkHttp cost 26 ms to apply http request
2022-02-10 19:55:26 775|com.obs.services.internal.RestStorageService|performRequest|819|Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:26|2022-02-10 19:55:26||[responseCode: 204][request-id: 0000017EE37CFED598C7A8492883443E]|0|
2022-02-10 19:55:26 780|com.obs.services.ObsClient|doActionWithResult|3933|Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:26|2022-02-10 19:55:26|||0|
2022-02-10 19:55:26 783|com.obs.services.ObsClient|doActionWithResult|3934|ObsClient [deleteObject] cost 51 ms
2022-02-10 19:55:26.785 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Preparing: DELETE FROM tb_draft WHERE id=?
2022-02-10 19:55:26.786 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Parameters: 45(Integer)
2022-02-10 19:55:26.822 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-<== Updates: 1
2022-02-10 19:55:31.986 [scheduling-1] INFO com.fzm.portal.schedule.DraftTask-即将删掉草稿,草稿id为 : 63
2022-02-10 19:55:31.987 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Preparing: SELECT id,user_id,content,json,step,create_date,update_date FROM tb_draft WHERE id=?
2022-02-10 19:55:31.987 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-==> Parameters: 63(Integer)
2022-02-10 19:55:32.006 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectById-<== Total: 1
2022-02-10 19:55:32.051 [scheduling-1] INFO com.obs.services.internal.RestStorageService-OkHttp cost 39 ms to apply http request
2022-02-10 19:55:32.052 [scheduling-1] INFO com.obs.services.internal.RestStorageService-Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:32|2022-02-10 19:55:32||[responseCode: 204][request-id: 0000017EE37D137098C7E72F5BC997DE]|0|
2022-02-10 19:55:32.053 [scheduling-1] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:32|2022-02-10 19:55:32|||0|
2022-02-10 19:55:32.053 [scheduling-1] INFO com.obs.services.ObsClient-ObsClient [deleteObject] cost 42 ms
2022-02-10 19:55:32.053 [scheduling-1] INFO com.obs.log.AccessLogger-2022-02-10 19:55:32 051|com.obs.services.internal.RestStorageService|performRequest|672|OkHttp cost 39 ms to apply http request
2022-02-10 19:55:32 052|com.obs.services.internal.RestStorageService|performRequest|819|Storage|1|HTTP+XML|performRequest||||2022-02-10 19:55:32|2022-02-10 19:55:32||[responseCode: 204][request-id: 0000017EE37D137098C7E72F5BC997DE]|0|
2022-02-10 19:55:32 053|com.obs.services.ObsClient|doActionWithResult|3933|Storage|1|HTTP+XML|deleteObject||||2022-02-10 19:55:32|2022-02-10 19:55:32|||0|
2022-02-10 19:55:32 053|com.obs.services.ObsClient|doActionWithResult|3934|ObsClient [deleteObject] cost 42 ms
2022-02-10 19:55:32.054 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Preparing: DELETE FROM tb_draft WHERE id=?
2022-02-10 19:55:32.054 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-==> Parameters: 63(Integer)
2022-02-10 19:55:32.088 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.deleteById-<== Updates: 1
2022-02-10 19:56:09.539 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-==> Preparing: SELECT id,user_id,content,json,step,create_date,update_date FROM tb_draft
2022-02-10 19:56:09.541 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-==> Parameters:
2022-02-10 19:56:09.564 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-<== Total: 0
2022-02-10 19:56:24.029 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 19:56:24.312 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 19:56:24.327 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 19:56:25.295 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 19:56:25.752 [SpringContextShutdownHook] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-10 19:56:25.754 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 19:56:25.754 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 19:56:25.838 [SpringContextShutdownHook] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-10 19:56:25.897 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-02-10 19:56:25.911 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
2022-02-10 19:56:34.136 [background-preinit] INFO org.hibernate.validator.internal.util.Version-HV000001: Hibernate Validator 6.1.7.Final
2022-02-10 19:56:34.172 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Starting JoyingPortalApplication on LAPTOP-AT8CNAMK with PID 54372 (D:\workspace\fzm-joying\joying-portal\target\classes started by tangtuo in D:\workspace\fzm-joying)
2022-02-10 19:56:34.172 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-The following profiles are active: nj
2022-02-10 19:56:34.231 [restartedMain] INFO o.s.b.d.env.DevToolsPropertyDefaultsPostProcessor-Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2022-02-10 19:56:34.231 [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 19:56:35.613 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Multiple Spring Data modules found, entering strict repository configuration mode!
2022-02-10 19:56:35.617 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Bootstrapping Spring Data Redis repositories in DEFAULT mode.
2022-02-10 19:56:35.681 [restartedMain] INFO o.s.d.r.config.RepositoryConfigurationDelegate-Finished Spring Data repository scanning in 33ms. Found 0 Redis repository interfaces.
2022-02-10 19:56:37.108 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat initialized with port(s): 8001 (http)
2022-02-10 19:56:37.116 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Initializing ProtocolHandler ["http-nio-8001"]
2022-02-10 19:56:37.117 [restartedMain] INFO org.apache.catalina.core.StandardService-Starting service [Tomcat]
2022-02-10 19:56:37.117 [restartedMain] INFO org.apache.catalina.core.StandardEngine-Starting Servlet engine: [Apache Tomcat/9.0.43]
2022-02-10 19:56:37.391 [restartedMain] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]-Initializing Spring embedded WebApplicationContext
2022-02-10 19:56:37.391 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext-Root WebApplicationContext: initialization completed in 3160 ms
2022-02-10 19:56:37.653 [restartedMain] INFO c.a.d.s.b.a.DruidDataSourceAutoConfigure-Init DruidDataSource
2022-02-10 19:56:38.930 [restartedMain] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} inited
2022-02-10 19:56:41.666 [restartedMain] INFO com.obs.services.ObsClient-Storage|1|HTTP+XML|ObsClient||||2022-02-10 19:56:41|2022-02-10 19:56:41|||0|
2022-02-10 19:56:41.668 [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 19:56:42.093 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightApplyOwnerRelation.
2022-02-10 19:56:42.231 [restartedMain] WARN c.b.mybatisplus.core.metadata.TableInfoHelper-Warn: Could not find @TableId in Class: com.fzm.common.entity.CopyrightAuthorityRelation.
2022-02-10 19:56:42.410 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Initializing ExecutorService 'threadPoolTaskExecutor'
2022-02-10 19:56:42.800 [restartedMain] INFO org.redisson.Version-Redisson 3.16.0
2022-02-10 19:56:44.349 [redisson-netty-4-23] INFO o.r.connection.pool.MasterPubSubConnectionPool-1 connections initialized for 146.56.218.121/146.56.218.121:6379
2022-02-10 19:56:44.470 [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 19:56:45.069 [restartedMain] INFO com.fzm.common.utils.SnowflakeUtil-当前机器的workId:167772322
2022-02-10 19:56:45.594 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Begin update Certificates.Date:2022-02-10T11:56:45.594Z
2022-02-10 19:56:45.768 [scheduled_update_cert_thread] INFO c.w.p.c.apache.httpclient.cert.CertificatesManager-Finish update Certificates.Date:2022-02-10T11:56:45.768Z
2022-02-10 19:56:46.690 [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 19:56:47.034 [restartedMain] INFO o.s.b.d.autoconfigure.OptionalLiveReloadServer-LiveReload server is running on port 35729
2022-02-10 19:56:47.712 [restartedMain] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Initializing ExecutorService 'taskScheduler'
2022-02-10 19:56:48.046 [restartedMain] INFO org.apache.coyote.http11.Http11NioProtocol-Starting ProtocolHandler ["http-nio-8001"]
2022-02-10 19:56:48.086 [restartedMain] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer-Tomcat started on port(s): 8001 (http) with context path ''
2022-02-10 19:56:48.090 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Context refreshed
2022-02-10 19:56:48.122 [restartedMain] INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper-Found 1 custom documentation plugin(s)
2022-02-10 19:56:48.158 [restartedMain] INFO s.d.spring.web.scanners.ApiListingReferenceScanner-Scanning for api listing references
2022-02-10 19:56:48.338 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_1
2022-02-10 19:56:48.350 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_2
2022-02-10 19:56:48.377 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_3
2022-02-10 19:56:48.410 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_4
2022-02-10 19:56:48.461 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_1
2022-02-10 19:56:48.485 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_5
2022-02-10 19:56:48.509 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: addUsingPOST_1
2022-02-10 19:56:48.510 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_1
2022-02-10 19:56:48.516 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_6
2022-02-10 19:56:48.518 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_1
2022-02-10 19:56:48.520 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_2
2022-02-10 19:56:48.524 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_7
2022-02-10 19:56:48.533 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getByIdUsingGET_2
2022-02-10 19:56:48.535 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: submitUsingPOST_1
2022-02-10 19:56:48.568 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_1
2022-02-10 19:56:48.577 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_8
2022-02-10 19:56:48.602 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: saveUsingPOST_1
2022-02-10 19:56:48.614 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: getDetailUsingGET_2
2022-02-10 19:56:48.616 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_9
2022-02-10 19:56:48.620 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: listUsingGET_10
2022-02-10 19:56:48.632 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: deleteUsingPOST_3
2022-02-10 19:56:48.633 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: downloadUsingPOST_1
2022-02-10 19:56:48.634 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: uploadUsingPOST_1
2022-02-10 19:56:48.661 [restartedMain] INFO s.d.s.w.r.operation.CachingOperationNameGenerator-Generating unique operation named: updateUsingPOST_2
2022-02-10 19:56:48.681 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Attempting to connect to: [129.211.166.223:5672]
2022-02-10 19:56:48.798 [restartedMain] INFO o.s.a.rabbit.connection.CachingConnectionFactory-Created new connection: rabbitConnectionFactory#7296aa05:0/SimpleConnection@7b7b6f83 [delegate=amqp://guest@129.211.166.223:5672/, localPort= 53179]
2022-02-10 19:56:49.281 [restartedMain] INFO com.fzm.portal.JoyingPortalApplication-Started JoyingPortalApplication in 15.642 seconds (JVM running for 17.009)
2022-02-10 20:00:00.169 [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 20:00:00.264 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 20:00:00.1(Timestamp)
2022-02-10 20:00:00.312 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 20:00:09.878 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-==> Preparing: SELECT id,user_id,content,json,step,create_date,update_date FROM tb_draft
2022-02-10 20:00:09.879 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-==> Parameters:
2022-02-10 20:00:09.897 [scheduling-1] DEBUG com.fzm.common.mapper.DraftMapper.selectList-<== Total: 0
2022-02-10 20:05:00.061 [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 20:05:00.061 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-==> Parameters: 0(Integer), 2022-02-09 20:05:00.06(Timestamp)
2022-02-10 20:05:00.086 [scheduling-1] DEBUG com.fzm.common.mapper.OrderMapper.selectList-<== Total: 0
2022-02-10 20:07:12.569 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 20:07:12.974 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 20:07:13.000 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Waiting for workers to finish.
2022-02-10 20:07:13.975 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Successfully waited for workers to finish.
2022-02-10 20:07:14.180 [SpringContextShutdownHook] INFO o.s.scheduling.concurrent.ThreadPoolTaskScheduler-Shutting down ExecutorService 'taskScheduler'
2022-02-10 20:07:14.181 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 20:07:14.181 [SpringContextShutdownHook] INFO o.s.a.r.listener.SimpleMessageListenerContainer-Shutdown ignored - container is not active already
2022-02-10 20:07:14.220 [SpringContextShutdownHook] INFO o.s.scheduling.concurrent.ThreadPoolTaskExecutor-Shutting down ExecutorService 'threadPoolTaskExecutor'
2022-02-10 20:07:14.249 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closing ...
2022-02-10 20:07:14.255 [SpringContextShutdownHook] INFO com.alibaba.druid.pool.DruidDataSource-{dataSource-1} closed
...@@ -599,20 +599,54 @@ CREATE TABLE `tb_banner` ( ...@@ -599,20 +599,54 @@ CREATE TABLE `tb_banner` (
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4; ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
-- v2.3.0
alter table tb_nft add column publish_status TINYINT(1) not null default 0 comment '发行状态 0-待支付 1-发行中 2-发行成功 3-发行失败' after publish_time;
update tb_nft set publish_status =2 where nft_hash !='';
DROP TABLE IF EXISTS `tb_order`;
CREATE TABLE `tb_order` ( CREATE TABLE `tb_order` (
`id` bigint(20) NOT NULL, `id` bigint(20) NOT NULL,
`order_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '订单名称',
`pay_scene` tinyint(1) NOT NULL COMMENT '支付场景 1-nft发行 2-版权申请', `pay_scene` tinyint(1) NOT NULL COMMENT '支付场景 1-nft发行 2-版权申请',
`product_id` int(11) NOT NULL COMMENT '产品id nft主键或者版权主键', `product_id` int(11) NOT NULL COMMENT '产品id nft主键或者版权主键',
`user_id` int(11) NOT NULL COMMENT '用户id', `user_id` int(11) NOT NULL COMMENT '用户id',
`fee` bigint(20) NOT NULL COMMENT '订单价格-单位(分)', `fee` bigint(20) NOT NULL COMMENT '订单价格-单位(分)',
`order_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0-支付中 1-支付成功 2-订单已关闭 3-已退款', `order_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '0-支付中 1-支付成功 2-订单已关闭 3-已退款',
`prepay_id` varchar(128) NOT NULL COMMENT '微信预支付交易会话标识', `pay_type` tinyint(1) NULL DEFAULT NULL COMMENT '支付方式 1-微信支付 2-支付宝支付',
`create_date` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP,
`update_date` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP(0),
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;
CREATE TABLE `tb_payment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` bigint(20) NOT NULL COMMENT '订单id',
`transaction_id` varchar(64) NOT NULL COMMENT '微信支付订单号',
`trade_type` varchar(16) NOT NULL COMMENT 'JSAPI: 公众号支付; NATIVE:扫码支付 ; APP:APP支付 ; MICROPAY:付款码支付 ; MWEB:H5支付 ; FACEPAY:刷脸支付',
`total_fee` int(11) NOT NULL COMMENT '金额',
`is_refund` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否有退款,0-否 1-是',
`success_time` varchar(32) NOT NULL DEFAULT '' COMMENT '支付成功时间',
`content` text COMMENT '支付通知数据',
`create_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `create_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`update_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `update_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
CREATE TABLE `tb_refund` (
-- v2.3.0 `id` bigint(20) NOT NULL COMMENT '商户退款单号',
alter table tb_nft add column publish_status TINYINT(1) not null default 1 comment '发行状态 0-待支付 1-发行中 2-发行成功 3-发行失败' after publish_time; `order_id` bigint(20) NOT NULL COMMENT '订单id',
update tb_nft set publish_status =2 where nft_hash !=''; `transaction_id` varchar(32) NOT NULL DEFAULT '' COMMENT '微信支付订单号',
\ No newline at end of file `fee` int(11) NOT NULL COMMENT '退款金额',
`refund_id` varchar(32) NOT NULL DEFAULT '' COMMENT '微信支付退款单号',
`refund_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1- 退款中 2-退款成功 3-退款失败',
`user_received_account` varchar(64) NOT NULL DEFAULT '' COMMENT '取当前退款单的退款入账方',
`success_time` varchar(32) NOT NULL DEFAULT '' COMMENT '支付成功时间',
`content` text COMMENT '支付通知数据',
`channel` tinyint(1) NOT NULL DEFAULT '1' COMMENT '退款发起渠道 1-用户发起 2-后台运营发起',
`create_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`update_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
\ No newline at end of file
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