Prechádzať zdrojové kódy

Merge branch 'prod2.x' into test

lwhhszx 2 rokov pred
rodič
commit
4ff0923150

+ 3 - 0
PAS/src/main/java/cn/cslg/pas/service/PatentApplicantService.java

@@ -234,6 +234,9 @@ public class PatentApplicantService extends ServiceImpl<PatentApplicantMapper, P
      * @param shortName 【标】权利人 通过分割符 | 分割后的List
      */
     public List<Integer> updatePatentApplicant(List<String> name, List<String> shortName,List<PatentApplicant> patentApplicantList) {
+         if(shortName==null){
+             shortName=new ArrayList<>();
+         }
         //生成一个存放ID的List
         List<Integer> ids = new ArrayList<>();
         //判断当前名称是否为空

+ 0 - 3
PAS/src/main/java/cn/cslg/pas/service/PatentSimpleFamilyService.java

@@ -91,7 +91,6 @@ public class PatentSimpleFamilyService extends ServiceImpl<PatentSimpleFamilyMap
     }
 
     public void updateData(List<String> familyNo, String patentNo, Integer patentId, Integer type) {
-        long start =System.currentTimeMillis();
         //0.合并专利号
         if (!familyNo.contains(patentNo)) {
             familyNo.add(patentNo);
@@ -172,8 +171,6 @@ public class PatentSimpleFamilyService extends ServiceImpl<PatentSimpleFamilyMap
 
             }
         }
-        long end =System.currentTimeMillis();
-        System.out.println("总共用时---"+(start-end));
     }
 
 }

+ 1 - 0
PAS/src/main/java/cn/cslg/pas/service/UploadPatentBatchService.java

@@ -352,6 +352,7 @@ public class UploadPatentBatchService {
      */
     private void getOneOrInsertOne(UploadParamsVO uploadParamsVO) {
         if (uploadParamsVO.getPatent() != null) {
+            uploadParamsVO.getPatent().setPatentNo(uploadParamsVO.getPatent().getPatentNo().trim());
             //用专利号查询该条数据是否存在
             Patent patent = patentService.getByPatentNo(uploadParamsVO.getPatent().getPatentNo());
             //如果不存在就新增一条

+ 1 - 1
PAS/src/main/resources/application.yml

@@ -20,7 +20,7 @@ spring:
       max-file-size: 1000MB
       max-request-size: 1000MB
   profiles:
-    active: local
+    active: dev
   jackson:
     default-property-inclusion: non_null
     serialization:

+ 3 - 3
PAS/src/main/resources/mapper/PatentMapper.xml

@@ -212,16 +212,16 @@
                 and (select count(*) from os_patent_right where a.id = patent_id and (${params.rightContentSql})) > 0
             </if>
             <if test="params.querySimpleFamily == true">
-                and (a.simple_family = (select id from os_patent_simplefamily where type = 1 and patent_no = a.patentno)
+                and (a.simple_family = (select id from os_patent_simplefamily where type = 1 and patent_no = a.patentno limit 1)
                 or a.simple_family is null)
             </if>
             <if test="params.queryInpadocFamily == true">
                 and (a.inpadoc_family = (select id from os_patent_simplefamily where type = 2 and patent_no =
-                a.patentno) or a.inpadoc_family is null)
+                a.patentno limit 1) or a.inpadoc_family is null)
             </if>
             <if test="params.queryPatSnapFamily == true">
                 and (a.patsnap_family = (select id from os_patent_simplefamily where type = 3 and patent_no =
-                a.patentno) or a.patsnap_family is null)
+                a.patentno limit 1) or a.patsnap_family is null)
             </if>
             <if test="params.whereClassNumberIpc != null">
                 and q1.type = 1 and

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 3519 - 0
logs/pas/pas-debug.log


+ 0 - 0
logs/pas/pas-error.log


+ 115 - 0
logs/pas/pas-info.log

@@ -0,0 +1,115 @@
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:57.360 INFO 28200 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 28200 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:57.366 INFO 28200 [main] cn.cslg.pas.Application The following 1 profile is active: "prod2"
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:58.715 INFO 28200 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:58.715 INFO 28200 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:58.775 INFO 28200 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 40 ms. Found 0 Redis repository interfaces.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:59.675 INFO 28200 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:59.685 INFO 28200 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:59.685 INFO 28200 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:59.685 INFO 28200 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.58]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:59.785 INFO 28200 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:28:59.785 INFO 28200 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 2293 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:29:00.064 INFO 28200 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:29:00.334 INFO 28200 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:29:06.609 INFO 28200 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:29:06.629 INFO 28200 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:29:06.639 INFO 28200 [main] cn.cslg.pas.Application Started Application in 10.176 seconds (JVM running for 12.433)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:35:22.740 INFO 28200 [http-nio-8877-exec-2] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:35:22.741 INFO 28200 [http-nio-8877-exec-2] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:35:22.745 INFO 28200 [http-nio-8877-exec-2] org.springframework.web.servlet.DispatcherServlet Completed initialization in 2 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:23.174 INFO 28200 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:27.114 INFO 10228 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 10228 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:27.118 INFO 10228 [main] cn.cslg.pas.Application The following 1 profile is active: "dev"
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:28.323 INFO 10228 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:28.328 INFO 10228 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:28.386 INFO 10228 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 41 ms. Found 0 Redis repository interfaces.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.229 INFO 10228 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.238 INFO 10228 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.239 INFO 10228 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.240 INFO 10228 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.58]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.334 INFO 10228 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.335 INFO 10228 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 2154 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.574 INFO 10228 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:29.817 INFO 10228 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:35.282 INFO 10228 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:35.301 INFO 10228 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:36:35.311 INFO 10228 [main] cn.cslg.pas.Application Started Application in 8.871 seconds (JVM running for 10.121)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:08.900 INFO 10228 [http-nio-8877-exec-3] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:08.900 INFO 10228 [http-nio-8877-exec-3] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:08.903 INFO 10228 [http-nio-8877-exec-3] org.springframework.web.servlet.DispatcherServlet Completed initialization in 2 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:23.016 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始获得权限
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:23.024 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 获得用户信息沈永艺103
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:23.024 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:23.241 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:37:23.641 INFO 10228 [http-nio-8877-exec-10] cn.cslg.pas.common.utils.JsonUtils after ----> title:1, desc:2
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:38:12.175 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始获得权限
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:38:12.178 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 获得用户信息沈永艺103
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:38:12.178 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:38:12.183 INFO 10228 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:40:03.293 INFO 10228 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 开始获得权限
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:40:03.297 INFO 10228 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 获得用户信息沈永艺103
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:40:03.297 INFO 10228 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:40:03.301 INFO 10228 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:43.492 INFO 10228 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:48.869 INFO 340 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 340 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:48.871 INFO 340 [main] cn.cslg.pas.Application The following 1 profile is active: "dev"
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:49.700 INFO 340 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:49.704 INFO 340 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:49.757 INFO 340 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 39 ms. Found 0 Redis repository interfaces.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.450 INFO 340 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.458 INFO 340 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.458 INFO 340 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.459 INFO 340 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.58]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.533 INFO 340 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.534 INFO 340 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1628 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.725 INFO 340 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:50.940 INFO 340 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:55.518 INFO 340 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:55.534 INFO 340 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:42:55.542 INFO 340 [main] cn.cslg.pas.Application Started Application in 7.146 seconds (JVM running for 7.909)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:12.847 INFO 340 [http-nio-8877-exec-2] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:12.848 INFO 340 [http-nio-8877-exec-2] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:12.849 INFO 340 [http-nio-8877-exec-2] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:12.881 INFO 340 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始获得权限
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:13.358 INFO 340 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 获得用户信息沈永艺103
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:13.358 INFO 340 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:13.552 INFO 340 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:51.846 INFO 340 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:56.905 INFO 29892 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 29892 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:56.907 INFO 29892 [main] cn.cslg.pas.Application The following 1 profile is active: "dev"
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:57.729 INFO 29892 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:57.732 INFO 29892 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:57.784 INFO 29892 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 39 ms. Found 0 Redis repository interfaces.
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.448 INFO 29892 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.456 INFO 29892 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.457 INFO 29892 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.457 INFO 29892 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.58]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.531 INFO 29892 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.531 INFO 29892 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1588 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.726 INFO 29892 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:43:58.939 INFO 29892 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:03.597 INFO 29892 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:03.614 INFO 29892 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:03.622 INFO 29892 [main] cn.cslg.pas.Application Started Application in 7.181 seconds (JVM running for 8.098)
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:24.018 INFO 29892 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:24.018 INFO 29892 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:24.020 INFO 29892 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:31.379 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":0,"taskId":1324,"complete":false,"url":"","fileName":"","taskType":1,"percentage":17,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:32.412 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":1,"taskId":1324,"complete":false,"url":"","fileName":"","taskType":1,"percentage":33,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:33.596 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":2,"taskId":1324,"complete":false,"url":"","fileName":"","taskType":1,"percentage":50,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:35.029 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":3,"taskId":1324,"complete":false,"url":"","fileName":"","taskType":1,"percentage":67,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:36.106 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":4,"taskId":1324,"complete":false,"url":"","fileName":"","taskType":1,"percentage":83,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:37.044 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":5,"taskId":1324,"complete":false,"url":"","fileName":"","taskType":1,"percentage":100,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:44:37.116 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":6,"taskId":1324,"complete":true,"url":"","fileName":"","taskType":1,"percentage":100,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:20.536 INFO 29892 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始获得权限
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:20.542 INFO 29892 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 获得用户信息沈永艺103
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:20.542 INFO 29892 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:20.549 INFO 29892 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 查询专题库信息
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:32.255 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":0,"taskId":1325,"complete":false,"url":"","fileName":"","taskType":1,"percentage":17,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:33.348 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":1,"taskId":1325,"complete":false,"url":"","fileName":"","taskType":1,"percentage":33,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:34.571 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":2,"taskId":1325,"complete":false,"url":"","fileName":"","taskType":1,"percentage":50,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:36.029 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":3,"taskId":1325,"complete":false,"url":"","fileName":"","taskType":1,"percentage":67,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:37.161 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":4,"taskId":1325,"complete":false,"url":"","fileName":"","taskType":1,"percentage":83,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:38.124 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":5,"taskId":1325,"complete":false,"url":"","fileName":"","taskType":1,"percentage":100,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:45:38.135 INFO 29892 [singleThreadAsyncTaskExecutor-1] cn.cslg.pas.common.utils.WebSocketServer 推送消息到窗口103,推送内容:{"code":903,"data":{"projectId":197,"total":6,"index":6,"taskId":1325,"complete":true,"url":"","fileName":"","taskType":1,"percentage":100,"oldName":"专利清单.XLSX"},"message":"WebSocket请求成功"}
+[pas:0.0.0.0:8877] [,] 2023-03-21 09:46:01.891 INFO 29892 [http-nio-8877-exec-3] cn.cslg.pas.common.utils.JsonUtils after ----> title:1, desc:2