CXF jar包冲突之asm

本文介绍了一个Web项目使用SSH框架结合CXF时出现的CGLib与ASM版本冲突问题。通过分析错误信息,明确了冲突原因,并提供了解决方案——在引入CXF依赖时排除ASM依赖。

场景:一个web项目,用了SSH框架,在选择webservice的时候选择了CXF

问题:项目启动时关键报错信息如下:

 

Caused by: java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(I)V

at net.sf.cglib.core.DebuggingClassWriter.<init>(DebuggingClassWriter.java:47)

at net.sf.cglib.core.DefaultGeneratorStrategy.getClassWriter(DefaultGeneratorStrategy.java:30)

at net.sf.cglib.core.DefaultGeneratorStrategy.generate(DefaultGeneratorStrategy.java:24)

at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:216)

at net.sf.cglib.core.KeyFactory$Generator.create(KeyFactory.java:144)

at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:116)

at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:108)

at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:104)

分析:项目中用到spring和hibernate,这两个框架都有需要cglib,但是cglib实际上就是封装了asm;cxf本身也有asm的依赖,异常信息正是由于cglib和cxf的asm版本冲突所致。

 

解决办法:

在引入cxf版本依赖的时候排除asm的依赖。

 

       <dependency>

            <groupId>org.apache.cxf</groupId>

            <artifactId>cxf-rt-frontend-jaxws</artifactId>

            <version>2.2.3</version>

            <exclusions>

                <exclusion>

                    <groupId>asm</groupId>

                    <artifactId>asm</artifactId>

                </exclusion>

            </exclusions>

        </dependency>

        <dependency>

            <groupId>org.apache.cxf</groupId>

            <artifactId>cxf-rt-transports-http</artifactId>

            <version>2.2.3</version>

        </dependency>

 

antlr-2.7.7.jar aopalliance-1.0.jar asm-3.3.1.jar commons-beanutils-1.8.3.jar commons-codec-1.4.jar commons-collections-3.2.1.jar commons-dbutils-1.5.jar commons-httpclient.jar commons-lang-2.6.jar commons-lang3-3.0.1.jar commons-logging-1.1.1.jar cxf-2.6.3.jar cxf-manifest.jar cxf-services-sts-core-2.6.3.jar cxf-services-wsn-api-2.6.3.jar cxf-services-wsn-core-2.6.3.jar cxf-xjc-boolean-2.6.0.jar cxf-xjc-bug671-2.6.0.jar cxf-xjc-dv-2.6.0.jar cxf-xjc-runtime-2.6.0.jar cxf-xjc-ts-2.6.0.jar ehcache-core-2.5.1.jar FastInfoset-1.2.12.jar geronimo-activation_1.1_spec-1.1.jar geronimo-annotation_1.0_spec-1.1.1.jar geronimo-javamail_1.4_spec-1.7.1.jar geronimo-jaxws_2.2_spec-1.1.jar geronimo-jms_1.1_spec-1.1.1.jar geronimo-servlet_2.5_spec-1.1.2.jar geronimo-stax-api_1.0_spec-1.0.1.jar geronimo-ws-metadata_2.0_spec-1.1.3.jar h2-1.3.169.jar isorelax-20030108.jar jaxb-api-2.2.6.jar jaxb-impl-2.2.5.jar jaxb-xjc-2.2.5.jar jettison-1.3.2.jar jetty-continuation-7.5.4.v20111024.jar jetty-http-7.5.4.v20111024.jar jetty-io-7.5.4.v20111024.jar jetty-security-7.5.4.v20111024.jar jetty-server-7.5.4.v20111024.jar jetty-util-7.5.4.v20111024.jar joda-time-1.6.2.jar js-1.7R2.jar json-lib-2.4-jdk15.jar jsr311-api-1.1.1.jar mimepull-1.7.jar msv-core-2011.1.jar neethi-3.0.2.jar oauth-20100527.jar oauth-provider-20100527.jar opensaml-2.5.1-1.jar openws-1.4.2-1.jar relaxngDatatype-20020414.jar saaj-api-1.3.4.jar saaj-impl-1.3.19.jar serializer-2.7.1.jar slf4j-api-1.6.2.jar slf4j-jdk14-1.6.2.jar spring-aop-3.0.7.RELEASE.jar spring-asm-3.0.7.RELEASE.jar spring-beans-3.0.7.RELEASE.jar spring-context-3.0.7.RELEASE.jar spring-core-3.0.7.RELEASE.jar spring-expression-3.0.7.RELEASE.jar spring-jms-3.0.7.RELEASE.jar spring-tx-3.0.7.RELEASE.jar spring-web-3.0.7.RELEASE.jar stax2-api-3.1.1.jar velocity-1.7.jar woodstox-core-asl-4.1.4.jar wsdl4j-1.6.2.jar wss4j-1.6.7.jar xalan-2.7.1.jar xml-resolver-1.2.jar xmlbeans-2.5.0.jar xmlschema-core-2.0.3.jar xmlsec-1.5.2.jar xmltooling-1.3.2-1.jar xsdlib-2010.1.ja
D:\jdk1.852\bin\java.exe "-javaagent:D:\IDEA\IntelliJ IDEA 2025.2.3\lib\idea_rt.jar=53279" -Dfile.encoding=UTF-8 -classpath D:\jdk1.852\jre\lib\charsets.jar;D:\jdk1.852\jre\lib\deploy.jar;D:\jdk1.852\jre\lib\ext\access-bridge-64.jar;D:\jdk1.852\jre\lib\ext\cldrdata.jar;D:\jdk1.852\jre\lib\ext\dnsns.jar;D:\jdk1.852\jre\lib\ext\jaccess.jar;D:\jdk1.852\jre\lib\ext\jfxrt.jar;D:\jdk1.852\jre\lib\ext\localedata.jar;D:\jdk1.852\jre\lib\ext\nashorn.jar;D:\jdk1.852\jre\lib\ext\sunec.jar;D:\jdk1.852\jre\lib\ext\sunjce_provider.jar;D:\jdk1.852\jre\lib\ext\sunmscapi.jar;D:\jdk1.852\jre\lib\ext\sunpkcs11.jar;D:\jdk1.852\jre\lib\ext\zipfs.jar;D:\jdk1.852\jre\lib\javaws.jar;D:\jdk1.852\jre\lib\jce.jar;D:\jdk1.852\jre\lib\jfr.jar;D:\jdk1.852\jre\lib\jfxswt.jar;D:\jdk1.852\jre\lib\jsse.jar;D:\jdk1.852\jre\lib\management-agent.jar;D:\jdk1.852\jre\lib\plugin.jar;D:\jdk1.852\jre\lib\resources.jar;D:\jdk1.852\jre\lib\rt.jar;D:\dygz\web\WEB-INF\lib\slf4j-api-1.7.5.jar;D:\dygz\web\WEB-INF\lib\slf4j-log4j12-1.7.5.jar;D:\dygz\web\WEB-INF\lib\spring-jdbc-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\activation-1.1.1.jar;D:\dygz\web\WEB-INF\lib\activiti-bpmn-converter-5.14.jar;D:\dygz\web\WEB-INF\lib\activiti-bpmn-model-5.14.jar;D:\dygz\web\WEB-INF\lib\activiti-engine-5.14.jar;D:\dygz\web\WEB-INF\lib\activiti-spring-5.14.jar;D:\dygz\web\WEB-INF\lib\analyzer-2012_u6.jar;D:\dygz\web\WEB-INF\lib\antlr-2.7.7.jar;D:\dygz\web\WEB-INF\lib\aopalliance-1.0.jar;D:\dygz\web\WEB-INF\lib\apache-ant-zip-2.3.jar;D:\dygz\web\WEB-INF\lib\asm-4.2.jar;D:\dygz\web\WEB-INF\lib\aspectjrt-1.7.4.jar;D:\dygz\web\WEB-INF\lib\aspectjweaver-1.7.4.jar;D:\dygz\web\WEB-INF\lib\avro-1.6.3.jar;D:\dygz\web\WEB-INF\lib\bcpg-jdk15on-1.62.jar;D:\dygz\web\WEB-INF\lib\bcprov-jdk15on-1.70.jar;D:\dygz\web\WEB-INF\lib\BJCA_LOG.jar;D:\dygz\web\WEB-INF\lib\cglib-3.1.jar;D:\dygz\web\WEB-INF\lib\ckfinder-2.3.jar;D:\dygz\web\WEB-INF\lib\ckfinderplugin-fileeditor-2.3.jar;D:\dygz\web\WEB-INF\lib\ckfinderplugin-imageresize-2.3.jar;D:\dygz\web\WEB-INF\lib\classmate-0.8.0.jar;D:\dygz\web\WEB-INF\lib\commands-3.3.0-I20070605-0010.jar;D:\dygz\web\WEB-INF\lib\common-3.6.200-v20130402-1505.jar;D:\dygz\web\WEB-INF\lib\commons-beanutils-1.8.3.jar;D:\dygz\web\WEB-INF\lib\commons-codec-1.8.jar;D:\dygz\web\WEB-INF\lib\commons-collections-3.2.1.jar;D:\dygz\web\WEB-INF\lib\commons-collections4-4.1.jar;D:\dygz\web\WEB-INF\lib\commons-dbcp-1.4.jar;D:\dygz\web\WEB-INF\lib\commons-digester-1.7.jar;D:\dygz\web\WEB-INF\lib\commons-email-1.2.jar;D:\dygz\web\WEB-INF\lib\commons-fileupload-1.3.jar;D:\dygz\web\WEB-INF\lib\commons-io-2.4.jar;D:\dygz\web\WEB-INF\lib\commons-jexl-2.0.1.jar;D:\dygz\web\WEB-INF\lib\commons-lang-2.6.jar;D:\dygz\web\WEB-INF\lib\commons-lang3-3.1.jar;D:\dygz\web\WEB-INF\lib\commons-logging-1.1.1.jar;D:\dygz\web\WEB-INF\lib\commons-pool-1.5.4.jar;D:\dygz\web\WEB-INF\lib\cxf-core-3.2.0.jar;D:\tomcat\apache-tomcat-8.5.100;D:\dygz\web\WEB-INF\lib\jdom.jar;D:\dygz\web\WEB-INF\lib\ojdbc6.jar;D:\dygz\web\WEB-INF\lib\jstl-1.2.jar;D:\dygz\web\WEB-INF\lib\msyh_pdf.jar;D:\dygz\web\WEB-INF\lib\poi-3.16.jar;D:\dygz\web\WEB-INF\lib\sqljdbc4.jar;D:\dygz\web\WEB-INF\lib\iPeportFz.jar;D:\dygz\web\WEB-INF\lib\SVSClient.jar;D:\dygz\web\WEB-INF\lib\guava-18.0.jar;D:\dygz\web\WEB-INF\lib\junit-4.11.jar;D:\dygz\web\WEB-INF\lib\jxls-2.4.0.jar;D:\dygz\web\WEB-INF\lib\mail-1.4.7.jar;D:\dygz\web\WEB-INF\lib\zt-zip-1.6.jar;D:\dygz\web\WEB-INF\lib\dom4j-1.6.1.jar;D:\dygz\web\WEB-INF\lib\dozer-5.4.0.jar;D:\dygz\web\WEB-INF\lib\druid-1.0.1.jar;D:\dygz\web\WEB-INF\lib\jedis-2.1.0.jar;D:\dygz\web\WEB-INF\lib\log4j-1.2.17.jar;D:\dygz\web\WEB-INF\lib\pdfbox-3.0.5.jar;D:\dygz\web\WEB-INF\lib\wsdl4j-1.6.3.jar;D:\dygz\web\WEB-INF\lib\xmpbox-3.0.5.jar;D:\dygz\web\WEB-INF\lib\fontbox-3.0.5.jar;D:\dygz\web\WEB-INF\lib\jcommon-1.0.0.jar;D:\dygz\web\WEB-INF\lib\joda-time-2.1.jar;D:\dygz\web\WEB-INF\lib\mybatis-3.2.3.jar;D:\dygz\web\WEB-INF\lib\paranamer-2.3.jar;D:\dygz\web\WEB-INF\lib\xmpcore-5.1.2.jar;D:\dygz\web\WEB-INF\lib\xstream-1.4.3.jar;D:\dygz\web\WEB-INF\lib\fastjson-1.2.9.jar;D:\dygz\web\WEB-INF\lib\iTextAsian-2.1.jar;D:\dygz\web\WEB-INF\lib\pinyin4j-2.5.0.jar;D:\dygz\web\WEB-INF\lib\poi-ooxml-3.16.jar;D:\dygz\web\WEB-INF\lib\sitemesh-2.4.2.jar;D:\dygz\web\WEB-INF\lib\standard-1.1.2.jar;D:\dygz\web\WEB-INF\lib\stax-api-1.0.1.jar;D:\dygz\web\WEB-INF\lib\xmlbeans-2.3.0.jar;D:\dygz\web\WEB-INF\lib\jxls-poi-1.0.12.jar;D:\dygz\web\WEB-INF\lib\kingbase8-8.6.0.jar;D:\dygz\web\WEB-INF\lib\pdfbox-io-3.0.5.jar;D:\dygz\web\WEB-INF\lib\preflight-3.0.5.jar;D:\dygz\web\WEB-INF\lib\shiro-web-1.2.6.jar;D:\dygz\web\WEB-INF\lib\solr-core-3.6.2.jar;D:\dygz\web\WEB-INF\lib\stax2-api-3.1.4.jar;D:\dygz\web\WEB-INF\lib\swt-3.3.0-v3346.jar;D:\dygz\web\WEB-INF\lib\xml-apis-1.3.03.jar;D:\dygz\web\WEB-INF\lib\xmlpull-1.1.3.1.jar;D:\dygz\web\WEB-INF\lib\xmlworker-5.5.8.jar;D:\dygz\web\WEB-INF\lib\xpp3_min-1.1.4c.jar;D:\dygz\web\WEB-INF\lib\groovy-all-1.8.6.jar;D:\dygz\web\WEB-INF\lib\hutool-all-5.5.2.jar;D:\dygz\web\WEB-INF\lib\jfreechart-1.0.3.jar;D:\dygz\web\WEB-INF\lib\shiro-core-1.2.6.jar;D:\dygz\web\WEB-INF\lib\solr-solrj-3.6.2.jar;D:\dygz\web\WEB-INF\lib\xercesImpl-2.8.1.jar;D:\dygz\web\WEB-INF\lib\cxf-rt-wsdl-3.2.0.jar;D:\dygz\web\WEB-INF\lib\ehcache-web-2.0.4.jar;D:\dygz\web\WEB-INF\lib\freemarker-2.3.19.jar;D:\dygz\web\WEB-INF\lib\hamcrest-core-1.3.jar;D:\dygz\web\WEB-INF\lib\jxls-jexcel-1.0.6.jar;D:\dygz\web\WEB-INF\lib\jxls-reader-2.0.2.jar;D:\dygz\web\WEB-INF\lib\lucene-core-3.6.2.jar;D:\dygz\web\WEB-INF\lib\lucene-misc-3.6.2.jar;D:\dygz\web\WEB-INF\lib\postgresql-42.2.9.jar;D:\dygz\web\WEB-INF\lib\sqlite-jdbc-3.8.7.jar;D:\dygz\web\WEB-INF\lib\ehcache-core-2.6.6.jar;D:\dygz\web\WEB-INF\lib\jackson-core-2.2.1.jar;D:\dygz\web\WEB-INF\lib\jul-to-slf4j-1.7.5.jar;D:\dygz\web\WEB-INF\lib\lucene-facet-3.6.2.jar;D:\dygz\web\WEB-INF\lib\pdfbox-tools-3.0.5.jar;D:\dygz\web\WEB-INF\lib\shiro-spring-1.2.6.jar;D:\dygz\web\WEB-INF\lib\UserAgentUtils-1.9.jar;D:\dygz\web\WEB-INF\lib\esspdf-client-1.6.2.jar;D:\dygz\web\WEB-INF\lib\hibernate-4.dialect.jar;D:\dygz\web\WEB-INF\lib\iTextAsianCmaps-2.1.jar;D:\dygz\web\WEB-INF\lib\jasperreports-6.3.1.jar;D:\dygz\web\WEB-INF\lib\javassist-3.15.0-GA.jar;D:\dygz\web\WEB-INF\lib\lucene-memory-3.6.2.jar;D:\dygz\web\WEB-INF\lib\poi-scratchpad-3.16.jar;D:\dygz\web\WEB-INF\lib\shiro-ehcache-1.2.6.jar;D:\dygz\web\WEB-INF\lib\snappy-java-1.0.4.1.jar;D:\dygz\web\WEB-INF\lib\ssoclient-2.1.1-3.1.jar;D:\dygz\web\WEB-INF\lib\thumbnailator-0.4.2.jar;D:\dygz\web\WEB-INF\lib\woodstox-core-5.0.3.jar;D:\dygz\web\WEB-INF\lib\jcl-over-slf4j-1.7.5.jar;D:\dygz\web\WEB-INF\lib\log4jdbc-remix-0.2.7.jar;D:\dygz\web\WEB-INF\lib\lucene-smartcn-3.6.2.jar;D:\dygz\web\WEB-INF\lib\lucene-spatial-3.6.2.jar;D:\dygz\web\WEB-INF\lib\lucene-stempel-3.6.2.jar;D:\dygz\web\WEB-INF\lib\mybatis-spring-1.2.1.jar;D:\dygz\web\WEB-INF\lib\xmlschema-core-2.2.2.jar;D:\dygz\web\WEB-INF\lib\lucene-grouping-3.6.2.jar;D:\dygz\web\WEB-INF\lib\lucene-kuromoji-3.6.2.jar;D:\dygz\web\WEB-INF\lib\lucene-phonetic-3.6.2.jar;D:\dygz\web\WEB-INF\lib\jackson-core-asl-1.9.9.jar;D:\dygz\web\WEB-INF\lib\jackson-databind-2.2.1.jar;D:\dygz\web\WEB-INF\lib\javaparser-core-3.18.0.jar;D:\dygz\web\WEB-INF\lib\jboss-logging-3.1.0.GA.jar;D:\dygz\web\WEB-INF\lib\lucene-analyzers-3.6.2.jar;D:\dygz\web\WEB-INF\lib\poi-ooxml-schemas-3.16.jar;D:\dygz\web\WEB-INF\lib\spring-tx-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\draw2d-3.2.100-v20070529.jar;D:\dygz\web\WEB-INF\lib\jackson-mapper-asl-1.8.8.jar;D:\dygz\web\WEB-INF\lib\lucene-highlighter-3.6.2.jar;D:\dygz\web\WEB-INF\lib\metadata-extractor-2.6.2.jar;D:\dygz\web\WEB-INF\lib\protostuff-uberjar-1.1.1.jar;D:\dygz\web\WEB-INF\lib\spring-aop-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\spring-orm-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\spring-oxm-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\spring-web-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\jackson-annotations-2.2.1.jar;D:\dygz\web\WEB-INF\lib\jasperreports-fonts-6.3.1.jar;D:\dygz\web\WEB-INF\lib\lucene-spellchecker-3.6.2.jar;D:\dygz\web\WEB-INF\lib\msm-kryo-serializer-1.8.3.jar;D:\dygz\web\WEB-INF\lib\spring-core-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\spring-test-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\cxf-rt-bindings-soap-3.2.0.jar;D:\dygz\web\WEB-INF\lib\hibernate-core-4.2.0.Final.jar;D:\dygz\web\WEB-INF\lib\jface-3.3.0-I20070606-0010.jar;D:\dygz\web\WEB-INF\lib\solr-analysis-extras-3.6.2.jar;D:\dygz\web\WEB-INF\lib\spring-beans-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\validation-api-1.1.0.Final.jar;D:\dygz\web\WEB-INF\lib\cxf-rt-frontend-jaxws-3.2.0.jar;D:\dygz\web\WEB-INF\lib\mysql-connector-java-5.1.13.jar;D:\dygz\web\WEB-INF\lib\spring-webmvc-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\cxf-rt-frontend-simple-3.2.0.jar;D:\dygz\web\WEB-INF\lib\cxf-rt-transports-http-3.2.0.jar;D:\dygz\web\WEB-INF\lib\hibernate-search-4.2.0.Final.jar;D:\dygz\web\WEB-INF\lib\spring-context-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\cxf-rt-databinding-jaxb-3.2.0.jar;D:\dygz\web\WEB-INF\lib\hibernate-ehcache-4.2.0.Final.jar;D:\dygz\web\WEB-INF\lib\jasperreports-functions-6.3.1.jar;D:\dygz\web\WEB-INF\lib\hibernate-xunfad-18.24.RELEASE.jar;D:\dygz\web\WEB-INF\lib\hibernate-validator-5.0.1.Final.jar;D:\dygz\web\WEB-INF\lib\spring-data-redis-1.0.2.RELEASE.jar;D:\dygz\web\WEB-INF\lib\spring-expression-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\hibernate-search-orm-4.2.0.Final.jar;D:\dygz\web\WEB-INF\lib\jasperreports-chart-themes-6.3.1.jar;D:\dygz\web\WEB-INF\lib\hibernate-jpa-2.0-api-1.0.1.Final.jar;D:\dygz\web\WEB-INF\lib\itext-2.1.7.js6-20170307.125214-1.jar;D:\dygz\web\WEB-INF\lib\hibernate-search-engine-4.2.0.Final.jar;D:\dygz\web\WEB-INF\lib\javaparser-symbol-solver-core-3.18.0.jar;D:\dygz\web\WEB-INF\lib\spring-context-support-3.2.5.RELEASE.jar;D:\dygz\web\WEB-INF\lib\jackson-module-jaxb-annotations-2.2.1.jar;D:\dygz\web\WEB-INF\lib\jasperreports-chart-customizers-6.3.1.jar;D:\dygz\web\WEB-INF\lib\hibernate-search-analyzers-4.2.0.Final.jar;D:\dygz\web\WEB-INF\lib\hibernate-spatial-postgis-kingbase-1.1.jar;D:\dygz\web\WEB-INF\lib\org.insightech.er_1.0.0.v20121127-2328.jar;D:\dygz\web\WEB-INF\lib\hibernate-commons-annotations-4.0.1.Final.jar;D:\dygz\web\WEB-INF\lib\jboss-transaction-api_1.1_spec-1.0.0.Final.jar;D:\tomcat\apache-tomcat-8.5.100\lib\el-api.jar;D:\tomcat\apache-tomcat-8.5.100\lib\jasper.jar;D:\tomcat\apache-tomcat-8.5.100\lib\ojdbc6.jar;D:\tomcat\apache-tomcat-8.5.100\lib\jsp-api.jar;D:\tomcat\apache-tomcat-8.5.100\lib\catalina.jar;D:\tomcat\apache-tomcat-8.5.100\lib\ecj-4.6.3.jar;D:\tomcat\apache-tomcat-8.5.100\lib\jasper-el.jar;D:\tomcat\apache-tomcat-8.5.100\lib\jaspic-api.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-api.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-jni.jar;D:\tomcat\apache-tomcat-8.5.100\lib\catalina-ha.jar;D:\tomcat\apache-tomcat-8.5.100\lib\servlet-api.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-dbcp.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-jdbc.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-util.jar;D:\tomcat\apache-tomcat-8.5.100\lib\catalina-ant.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-coyote.jar;D:\tomcat\apache-tomcat-8.5.100\lib\websocket-api.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-i18n-de.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-i18n-es.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-i18n-fr.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-i18n-ja.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-i18n-ko.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-i18n-ru.jar;D:\tomcat\apache-tomcat-8.5.100\lib\annotations-api.jar;D:\tomcat\apache-tomcat-8.5.100\lib\catalina-tribes.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-util-scan.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-websocket.jar;D:\tomcat\apache-tomcat-8.5.100\lib\tomcat-i18n-zh-CN.jar;D:\tomcat\apache-tomcat-8.5.100\lib\catalina-storeconfig.jar com.okflow.modules.exchange.pack.Application 进程已结束,退出代码为 0
10-17
/usr/java/jdk1.8.0_152/bin/java -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:36477,suspend=y,server=n -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:/opt/apps/idea-iu/plugins/java/lib/rt/debugger-agent.jar -Dfile.encoding=UTF-8 -classpath /usr/java/jdk1.8.0_152/jre/lib/charsets.jar:/usr/java/jdk1.8.0_152/jre/lib/deploy.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/cldrdata.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/dnsns.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/jaccess.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/jfxrt.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/localedata.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/nashorn.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/sunec.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/sunjce_provider.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/sunpkcs11.jar:/usr/java/jdk1.8.0_152/jre/lib/ext/zipfs.jar:/usr/java/jdk1.8.0_152/jre/lib/javaws.jar:/usr/java/jdk1.8.0_152/jre/lib/jce.jar:/usr/java/jdk1.8.0_152/jre/lib/jfr.jar:/usr/java/jdk1.8.0_152/jre/lib/jfxswt.jar:/usr/java/jdk1.8.0_152/jre/lib/jsse.jar:/usr/java/jdk1.8.0_152/jre/lib/management-agent.jar:/usr/java/jdk1.8.0_152/jre/lib/plugin.jar:/usr/java/jdk1.8.0_152/jre/lib/resources.jar:/usr/java/jdk1.8.0_152/jre/lib/rt.jar:/media/GTZQ/DATA/workspace/hundsun-ext/amop-tgreportfacade/amop-tgreportfacade-service/target/classes:/media/GTZQ/DATA/workspace/api-repos/amop-tgreportfacade-api/target/classes:/media/GTZQ/DATA/maven/local_repos/org/projectlombok/lombok/1.16.22/lombok-1.16.22.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-starter-rpc-def/2.0.32.2/jrescloud-starter-rpc-def-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-rpc-def-monitor/2.0.32.2/jrescloud-rpc-def-monitor-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-rpc-def-log4j2/2.0.32.2/jrescloud-rpc-def-log4j2-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/qin/qin-core/0.0.4-SNAPSHOT/qin-core-0.0.4-SNAPSHOT.jar:/media/GTZQ/DATA/maven/local_repos/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar:/media/GTZQ/DATA/maven/local_repos/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar:/media/GTZQ/DATA/maven/local_repos/io/springfox/springfox-swagger-ui/2.9.2/springfox-swagger-ui-2.9.2.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/security/spring-security-data/4.2.8.RELEASE/spring-security-data-4.2.8.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/data/spring-data-commons/1.13.15.RELEASE/spring-data-commons-1.13.15.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/security/spring-security-core/4.2.8.RELEASE/spring-security-core-4.2.8.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/media/GTZQ/DATA/maven/local_repos/org/dom4j/dom4j/2.1.1/dom4j-2.1.1.jar:/media/GTZQ/DATA/maven/local_repos/io/undertow/undertow-core/1.4.25.Final/undertow-core-1.4.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/jboss/xnio/xnio-api/3.3.8.Final/xnio-api-3.3.8.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/jboss/xnio/xnio-nio/3.3.8.Final/xnio-nio-3.3.8.Final.jar:/media/GTZQ/DATA/maven/local_repos/com/alibaba/druid/1.2.8/druid-1.2.8.jar:/media/GTZQ/DATA/maven/local_repos/cn/hutool/hutool-all/5.8.0.M3/hutool-all-5.8.0.M3.jar:/media/GTZQ/DATA/workspace/api-repos/amc-common/target/classes:/media/GTZQ/DATA/workspace/api-repos/web-common/target/classes:/media/GTZQ/DATA/maven/local_repos/javax/persistence/persistence-api/1.0.2/persistence-api-1.0.2.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/retry/spring-retry/1.2.2.RELEASE/spring-retry-1.2.2.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/bouncycastle/bcprov-jdk15on/1.54/bcprov-jdk15on-1.54.jar:/media/GTZQ/DATA/maven/local_repos/org/yaml/snakeyaml/1.17/snakeyaml-1.17.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-configuration-processor/1.5.16.RELEASE/spring-boot-configuration-processor-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/com/thoughtworks/xstream/xstream/1.4.18/xstream-1.4.18.jar:/media/GTZQ/DATA/maven/local_repos/io/github/x-stream/mxparser/1.2.2/mxparser-1.2.2.jar:/media/GTZQ/DATA/maven/local_repos/xmlpull/xmlpull/1.1.3.1/xmlpull-1.1.3.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/skywalking/apm-toolkit-log4j-2.x/6.6.0/apm-toolkit-log4j-2.x-6.6.0.jar:/media/GTZQ/DATA/maven/local_repos/com/cloudbees/syslog-java-client/1.1.7/syslog-java-client-1.1.7.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-starter/2.0.32.2/jrescloud-starter-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-common/2.0.32.2/jrescloud-common-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-common-base/2.0.32.2/jrescloud-common-base-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-common-gm/2.0.32.2/jrescloud-common-gm-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-legacy/1.1.0.RELEASE/spring-boot-legacy-1.1.0.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter-aop/1.5.16.RELEASE/spring-boot-starter-aop-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/media/GTZQ/DATA/maven/local_repos/com/lmax/disruptor/3.4.2/disruptor-3.4.2.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter-log4j2/1.5.16.RELEASE/spring-boot-starter-log4j2-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-monitor-common/2.0.32.2/jrescloud-monitor-common-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-monitor-api/2.0.32.2/jrescloud-monitor-api-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/net/sf/dozer/dozer/5.5.1/dozer-5.5.1.jar:/media/GTZQ/DATA/maven/local_repos/org/slf4j/jcl-over-slf4j/1.7.25/jcl-over-slf4j-1.7.25.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-starter-mybatis/2.0.32.2/jrescloud-starter-mybatis-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-db-def/2.0.32.2/jrescloud-db-def-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-db-core/2.0.32.2/jrescloud-db-core-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-db-api/2.0.32.2/jrescloud-db-api-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-db-monitor/2.0.32.2/jrescloud-db-monitor-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/mysql/mysql-connector-java/5.1.47/mysql-connector-java-5.1.47.jar:/media/GTZQ/DATA/maven/local_repos/tk/mybatis/mapper-spring-boot-starter/2.1.5/mapper-spring-boot-starter-2.1.5.jar:/media/GTZQ/DATA/maven/local_repos/org/mybatis/mybatis/3.4.6/mybatis-3.4.6.jar:/media/GTZQ/DATA/maven/local_repos/org/mybatis/mybatis-spring/1.3.2/mybatis-spring-1.3.2.jar:/media/GTZQ/DATA/maven/local_repos/tk/mybatis/mapper-core/1.1.5/mapper-core-1.1.5.jar:/media/GTZQ/DATA/maven/local_repos/tk/mybatis/mapper-base/1.1.5/mapper-base-1.1.5.jar:/media/GTZQ/DATA/maven/local_repos/tk/mybatis/mapper-weekend/1.1.5/mapper-weekend-1.1.5.jar:/media/GTZQ/DATA/maven/local_repos/tk/mybatis/mapper-spring/1.1.5/mapper-spring-1.1.5.jar:/media/GTZQ/DATA/maven/local_repos/tk/mybatis/mapper-extra/1.1.5/mapper-extra-1.1.5.jar:/media/GTZQ/DATA/maven/local_repos/tk/mybatis/mapper-spring-boot-autoconfigure/2.1.5/mapper-spring-boot-autoconfigure-2.1.5.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter-jdbc/1.5.16.RELEASE/spring-boot-starter-jdbc-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-jdbc/4.3.19.RELEASE/spring-jdbc-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-tx/4.3.19.RELEASE/spring-tx-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-starter-rpc-mvc-registry/2.0.32.2/jrescloud-starter-rpc-mvc-registry-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-rpc-springmvc/2.0.32.2/jrescloud-rpc-springmvc-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/commons-fileupload/commons-fileupload/1.3.3/commons-fileupload-1.3.3.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-starter-mvc-registry/2.0.32.2/jrescloud-starter-mvc-registry-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-mvc-registry/2.0.32.2/jrescloud-mvc-registry-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-common-extension/2.0.32.2/jrescloud-common-extension-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jres/bizframe2/bizframe-api/2.0.54/bizframe-api-2.0.54.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jres/bizframe2/bizframe-cloud-api/2.0.54/bizframe-cloud-api-2.0.54.jar:/media/GTZQ/DATA/maven/local_repos/org/mybatis/generator/mybatis-generator-core/1.3.7/mybatis-generator-core-1.3.7.jar:/media/GTZQ/DATA/maven/local_repos/com/oracle/ojdbc/ojdbc8/19.3.0.0/ojdbc8-19.3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/com/oracle/ojdbc/ucp/19.3.0.0/ucp-19.3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/com/oracle/ojdbc/oraclepki/19.3.0.0/oraclepki-19.3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/com/oracle/ojdbc/osdt_cert/19.3.0.0/osdt_cert-19.3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/com/oracle/ojdbc/osdt_core/19.3.0.0/osdt_core-19.3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/com/oracle/ojdbc/simplefan/19.3.0.0/simplefan-19.3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/com/oracle/ojdbc/ons/19.3.0.0/ons-19.3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/cn/easyproject/orai18n/12.1.0.2.0/orai18n-12.1.0.2.0.jar:/media/GTZQ/DATA/maven/local_repos/io/swagger/swagger-annotations/1.5.24/swagger-annotations-1.5.24.jar:/media/GTZQ/DATA/maven/local_repos/jsch/jsch/0.1.54/jsch-0.1.54.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jres/workflow/com.hundsun.jres.workflow.cloud.util/1.2.177/com.hundsun.jres.workflow.cloud.util-1.2.177.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-t2sdk-core/1.2.4/jresplus-t2sdk-core-1.2.4.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-t2sdk-api/1.2.4/jresplus-t2sdk-api-1.2.4.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-t2sdk-spi-hs/1.2.4/jresplus-t2sdk-spi-hs-1.2.4.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jres/workflow/com.hundsun.jres.workflow.multisystem.remoting.api/1.2.177/com.hundsun.jres.workflow.multisystem.remoting.api-1.2.177.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jres/workflow/com.hundsun.jres.workflow.api.dto/1.2.177/com.hundsun.jres.workflow.api.dto-1.2.177.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-cep-context/1.1.29/jresplus-cep-context-1.1.29.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/workflow/com.hundsun.workflow.api/1.0.0/com.hundsun.workflow.api-1.0.0.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-remoting/1.1.29/jresplus-remoting-1.1.29.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-common/1.0.9/jresplus-common-1.0.9.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-cep-t2channel/1.1.29/jresplus-cep-t2channel-1.1.29.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-cep-core/1.1.29/jresplus-cep-core-1.1.29.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-security/1.0.5/jresplus-security-1.0.5.jar:/media/GTZQ/DATA/maven/local_repos/net/iharder/base64/2.3.9/base64-2.3.9.jar:/media/GTZQ/DATA/maven/local_repos/jaxen/jaxen/1.1.6/jaxen-1.1.6.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-cep-spring/1.1.29/jresplus-cep-spring-1.1.29.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-trace/1.0.1/jresplus-trace-1.0.1.jar:/media/GTZQ/DATA/maven/local_repos/xerces/xercesImpl/2.10.0/xercesImpl-2.10.0.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jres/workflow/com.hundsun.jres.workflow.remoting.api/1.2.177/com.hundsun.jres.workflow.remoting.api-1.2.177.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jres/workflow/com.hundsun.jres.workflow.comform.remoting.api/1.2.177/com.hundsun.jres.workflow.comform.remoting.api-1.2.177.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jresplus/jresplus-mvc-spi-spring4/1.2.2/jresplus-mvc-spi-spring4-1.2.2.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/velocity/velocity/1.7/velocity-1.7.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-webmvc/4.3.19.RELEASE/spring-webmvc-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-expression/4.3.19.RELEASE/spring-expression-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-web/4.3.19.RELEASE/spring-web-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-context/4.3.19.RELEASE/spring-context-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-beans/4.3.19.RELEASE/spring-beans-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-aop/4.3.19.RELEASE/spring-aop-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-core/4.3.19.RELEASE/spring-core-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-context-support/4.3.19.RELEASE/spring-context-support-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/jackson/core/jackson-annotations/2.8.0/jackson-annotations-2.8.0.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/jackson/core/jackson-core/2.8.11/jackson-core-2.8.11.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/jackson/core/jackson-databind/2.8.11.2/jackson-databind-2.8.11.2.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.8.11/jackson-dataformat-cbor-2.8.11.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/jackson/dataformat/jackson-dataformat-smile/2.8.11/jackson-dataformat-smile-2.8.11.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.8.11/jackson-dataformat-yaml-2.8.11.jar:/media/GTZQ/DATA/maven/local_repos/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:/media/GTZQ/DATA/maven/local_repos/commons-codec/commons-codec/1.10/commons-codec-1.10.jar:/media/GTZQ/DATA/maven/local_repos/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/media/GTZQ/DATA/maven/local_repos/commons-net/commons-net/3.6/commons-net-3.6.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/poi/poi/4.1.1/poi-4.1.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/poi/poi-ooxml-schemas/4.1.1/poi-ooxml-schemas-4.1.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/xmlbeans/xmlbeans/3.1.0/xmlbeans-3.1.0.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/poi/poi-ooxml/4.1.1/poi-ooxml-4.1.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar:/media/GTZQ/DATA/maven/local_repos/com/github/virtuald/curvesapi/1.06/curvesapi-1.06.jar:/media/GTZQ/DATA/maven/local_repos/org/jodconverter/jodconverter-core/4.2.2/jodconverter-core-4.2.2.jar:/media/GTZQ/DATA/maven/local_repos/com/google/code/gson/gson/2.8.5/gson-2.8.5.jar:/media/GTZQ/DATA/maven/local_repos/org/jodconverter/jodconverter-local/4.2.2/jodconverter-local-4.2.2.jar:/media/GTZQ/DATA/maven/local_repos/org/openoffice/juh/4.1.4/juh-4.1.4.jar:/media/GTZQ/DATA/maven/local_repos/org/openoffice/jurt/4.1.4/jurt-4.1.4.jar:/media/GTZQ/DATA/maven/local_repos/org/openoffice/ridl/4.1.4/ridl-4.1.4.jar:/media/GTZQ/DATA/maven/local_repos/org/openoffice/unoil/4.1.4/unoil-4.1.4.jar:/media/GTZQ/DATA/maven/local_repos/org/freemarker/freemarker/2.3.28/freemarker-2.3.28.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter-tomcat/1.5.16.RELEASE/spring-boot-starter-tomcat-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/tomcat/tomcat-annotations-api/8.5.34/tomcat-annotations-api-8.5.34.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/tomcat/embed/tomcat-embed-core/8.5.34/tomcat-embed-core-8.5.34.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/tomcat/embed/tomcat-embed-el/8.5.34/tomcat-embed-el-8.5.34.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/tomcat/embed/tomcat-embed-websocket/8.5.34/tomcat-embed-websocket-8.5.34.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/tomcat/tomcat-jdbc/8.5.34/tomcat-jdbc-8.5.34.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/tomcat/tomcat-juli/8.5.34/tomcat-juli-8.5.34.jar:/media/GTZQ/DATA/maven/local_repos/com/itextpdf/itextpdf/5.5.13.1/itextpdf-5.5.13.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/poi/poi-scratchpad/4.1.1/poi-scratchpad-4.1.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/httpcomponents/httpmime/4.5.6/httpmime-4.5.6.jar:/media/GTZQ/DATA/maven/local_repos/com/googlecode/aviator/aviator/3.0.1/aviator-3.0.1.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/middleware/middleware-base-common/2.0.6/middleware-base-common-2.0.6.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-starter-cache/2.0.32/jrescloud-starter-cache-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-cache-core/2.0.32/jrescloud-cache-core-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-cache-api/2.0.32/jrescloud-cache-api-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/org/ehcache/ehcache/3.2.3/ehcache-3.2.3.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/data/spring-data-redis/1.8.15.RELEASE/spring-data-redis-1.8.15.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/data/spring-data-keyvalue/1.2.15.RELEASE/spring-data-keyvalue-1.2.15.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/spring-oxm/4.3.19.RELEASE/spring-oxm-4.3.19.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-cache-jedis/2.0.32/jrescloud-cache-jedis-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-cache-couchbase/2.0.32/jrescloud-cache-couchbase-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/com/couchbase/client/java-client/2.3.7/java-client-2.3.7.jar:/media/GTZQ/DATA/maven/local_repos/com/couchbase/client/core-io/1.3.7/core-io-1.3.7.jar:/media/GTZQ/DATA/maven/local_repos/io/reactivex/rxjava/1.1.8/rxjava-1.1.8.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-cache-redis/2.0.32/jrescloud-cache-redis-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-cache-local/2.0.32/jrescloud-cache-local-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/store/2.0.32/store-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/org/rocksdb/rocksdbjni/5.18.3/rocksdbjni-5.18.3.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-cache-monitor/2.0.32/jrescloud-cache-monitor-2.0.32.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-starter-mq-amqp/3.1.9/jrescloud-starter-mq-amqp-3.1.9.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-mq-core/3.1.9/jrescloud-mq-core-3.1.9.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-mq-api/3.1.9/jrescloud-mq-api-3.1.9.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-mq-adapter/3.1.9/jrescloud-mq-adapter-3.1.9.jar:/media/GTZQ/DATA/maven/local_repos/com/esotericsoftware/kryo/5.0.0-RC1/kryo-5.0.0-RC1.jar:/media/GTZQ/DATA/maven/local_repos/com/esotericsoftware/reflectasm/1.11.7/reflectasm-1.11.7.jar:/media/GTZQ/DATA/maven/local_repos/com/esotericsoftware/minlog/1.3.0/minlog-1.3.0.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-mq-monitor/3.1.9/jrescloud-mq-monitor-3.1.9.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-mq-amqp-configuration/3.1.9/jrescloud-mq-amqp-configuration-3.1.9.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-mq-amqp/3.1.9/jrescloud-mq-amqp-3.1.9.jar:/media/GTZQ/DATA/maven/local_repos/com/rabbitmq/amqp-client/4.8.1/amqp-client-4.8.1.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-rpc-api/2.0.32.2/jrescloud-rpc-api-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-common-t2/2.0.32.2/jrescloud-common-t2-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/org/jxls/jxls/2.6.0/jxls-2.6.0.jar:/media/GTZQ/DATA/maven/local_repos/org/jxls/jxls-poi/1.2.0/jxls-poi-1.2.0.jar:/media/GTZQ/DATA/maven/local_repos/org/jxls/jxls-jexcel/1.0.8/jxls-jexcel-1.0.8.jar:/media/GTZQ/DATA/maven/local_repos/org/jxls/jxls-reader/2.0.5/jxls-reader-2.0.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/commons/commons-jexl3/3.1/commons-jexl3-3.1.jar:/media/GTZQ/DATA/maven/local_repos/org/redisson/redisson/3.7.3/redisson-3.7.3.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-common/4.1.25.Final/netty-common-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-codec/4.1.25.Final/netty-codec-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-buffer/4.1.25.Final/netty-buffer-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-transport/4.1.25.Final/netty-transport-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-resolver/4.1.25.Final/netty-resolver-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-resolver-dns/4.1.25.Final/netty-resolver-dns-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-codec-dns/4.1.25.Final/netty-codec-dns-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty-handler/4.1.25.Final/netty-handler-4.1.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/javax/cache/cache-api/1.0.0/cache-api-1.0.0.jar:/media/GTZQ/DATA/maven/local_repos/io/projectreactor/reactor-core/2.0.8.RELEASE/reactor-core-2.0.8.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/reactivestreams/reactive-streams/1.0.0/reactive-streams-1.0.0.jar:/media/GTZQ/DATA/maven/local_repos/net/bytebuddy/byte-buddy/1.8.11/byte-buddy-1.8.11.jar:/media/GTZQ/DATA/maven/local_repos/org/jodd/jodd-bean/3.7.1/jodd-bean-3.7.1.jar:/media/GTZQ/DATA/maven/local_repos/org/jodd/jodd-core/3.7.1/jodd-core-3.7.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar:/media/GTZQ/DATA/maven/local_repos/org/jsoup/jsoup/1.17.2/jsoup-1.17.2.jar:/media/GTZQ/DATA/maven/local_repos/com/sun/mail/javax.mail/1.5.6/javax.mail-1.5.6.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/logging/log4j/log4j-core/2.17.2/log4j-core-2.17.2.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/logging/log4j/log4j-api/2.17.2/log4j-api-2.17.2.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/logging/log4j/log4j-slf4j-impl/2.17.2/log4j-slf4j-impl-2.17.2.jar:/media/GTZQ/DATA/maven/local_repos/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/media/GTZQ/DATA/maven/local_repos/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-rpc-def/2.0.32.2/jrescloud-rpc-def-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-rpc-t2/2.0.32.2/jrescloud-rpc-t2-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar:/media/GTZQ/DATA/maven/local_repos/io/netty/netty/3.10.6.Final/netty-3.10.6.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/curator/curator-framework/4.2.0/curator-framework-4.2.0.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/curator/curator-client/4.2.0/curator-client-4.2.0.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/curator/curator-recipes/4.2.0/curator-recipes-4.2.0.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6.jar:/media/GTZQ/DATA/maven/local_repos/com/alibaba/nacos/nacos-client/1.1.4/nacos-client-1.1.4.jar:/media/GTZQ/DATA/maven/local_repos/com/alibaba/nacos/nacos-common/1.1.4/nacos-common-1.1.4.jar:/media/GTZQ/DATA/maven/local_repos/com/alibaba/nacos/nacos-api/1.1.4/nacos-api-1.1.4.jar:/media/GTZQ/DATA/maven/local_repos/io/prometheus/simpleclient/0.5.0/simpleclient-0.5.0.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-common-partition/2.0.32.2/jrescloud-common-partition-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-trace-protobuff/2.0.32.2/jrescloud-trace-protobuff-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-trace-core/2.0.32.2/jrescloud-trace-core-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/google/protobuf/protobuf-java/3.11.4/protobuf-java-3.11.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/kafka/kafka-clients/2.2.2/kafka-clients-2.2.2.jar:/media/GTZQ/DATA/maven/local_repos/com/github/luben/zstd-jni/1.3.8-1/zstd-jni-1.3.8-1.jar:/media/GTZQ/DATA/maven/local_repos/org/lz4/lz4-java/1.5.0/lz4-java-1.5.0.jar:/media/GTZQ/DATA/maven/local_repos/org/xerial/snappy/snappy-java/1.1.7.2/snappy-java-1.1.7.2.jar:/media/GTZQ/DATA/maven/local_repos/com/google/protobuf/protobuf-java-util/3.11.4/protobuf-java-util-3.11.4.jar:/media/GTZQ/DATA/maven/local_repos/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-trace-json/2.0.32.2/jrescloud-trace-json-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-trace-common/2.0.32.2/jrescloud-trace-common-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/jrescloud-trace-api/2.0.32.2/jrescloud-trace-api-2.0.32.2.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/media/GTZQ/DATA/maven/local_repos/com/github/xiaoymin/swagger-bootstrap-ui/1.9.6/swagger-bootstrap-ui-1.9.6.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/qin/qin-datasource/0.0.4-SNAPSHOT/qin-datasource-0.0.4-SNAPSHOT.jar:/media/GTZQ/DATA/maven/local_repos/org/aspectj/aspectjweaver/1.8.13/aspectjweaver-1.8.13.jar:/media/GTZQ/DATA/maven/local_repos/com/github/pagehelper/pagehelper-spring-boot-starter/1.2.10/pagehelper-spring-boot-starter-1.2.10.jar:/media/GTZQ/DATA/maven/local_repos/org/mybatis/spring/boot/mybatis-spring-boot-starter/1.3.2/mybatis-spring-boot-starter-1.3.2.jar:/media/GTZQ/DATA/maven/local_repos/org/mybatis/spring/boot/mybatis-spring-boot-autoconfigure/1.3.2/mybatis-spring-boot-autoconfigure-1.3.2.jar:/media/GTZQ/DATA/maven/local_repos/com/github/pagehelper/pagehelper-spring-boot-autoconfigure/1.2.10/pagehelper-spring-boot-autoconfigure-1.2.10.jar:/media/GTZQ/DATA/maven/local_repos/com/github/pagehelper/pagehelper/5.1.8/pagehelper-5.1.8.jar:/media/GTZQ/DATA/maven/local_repos/com/github/jsqlparser/jsqlparser/1.2/jsqlparser-1.2.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter-web/1.5.16.RELEASE/spring-boot-starter-web-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/hibernate/hibernate-validator/5.3.6.Final/hibernate-validator-5.3.6.Final.jar:/media/GTZQ/DATA/maven/local_repos/javax/validation/validation-api/1.1.0.Final/validation-api-1.1.0.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter-undertow/1.5.16.RELEASE/spring-boot-starter-undertow-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/io/undertow/undertow-servlet/1.4.25.Final/undertow-servlet-1.4.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/jboss/spec/javax/annotation/jboss-annotations-api_1.2_spec/1.0.2.Final/jboss-annotations-api_1.2_spec-1.0.2.Final.jar:/media/GTZQ/DATA/maven/local_repos/io/undertow/undertow-websockets-jsr/1.4.25.Final/undertow-websockets-jsr-1.4.25.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/jboss/spec/javax/websocket/jboss-websocket-api_1.1_spec/1.1.3.Final/jboss-websocket-api_1.1_spec-1.1.3.Final.jar:/media/GTZQ/DATA/maven/local_repos/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar:/media/GTZQ/DATA/maven/local_repos/org/glassfish/javax.el/3.0.0/javax.el-3.0.0.jar:/media/GTZQ/DATA/maven/local_repos/io/springfox/springfox-swagger2/2.9.2/springfox-swagger2-2.9.2.jar:/media/GTZQ/DATA/maven/local_repos/io/swagger/swagger-models/1.5.20/swagger-models-1.5.20.jar:/media/GTZQ/DATA/maven/local_repos/io/springfox/springfox-spi/2.9.2/springfox-spi-2.9.2.jar:/media/GTZQ/DATA/maven/local_repos/io/springfox/springfox-core/2.9.2/springfox-core-2.9.2.jar:/media/GTZQ/DATA/maven/local_repos/io/springfox/springfox-schema/2.9.2/springfox-schema-2.9.2.jar:/media/GTZQ/DATA/maven/local_repos/io/springfox/springfox-swagger-common/2.9.2/springfox-swagger-common-2.9.2.jar:/media/GTZQ/DATA/maven/local_repos/io/springfox/springfox-spring-web/2.9.2/springfox-spring-web-2.9.2.jar:/media/GTZQ/DATA/maven/local_repos/com/google/guava/guava/20.0/guava-20.0.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/plugin/spring-plugin-metadata/1.2.0.RELEASE/spring-plugin-metadata-1.2.0.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/mapstruct/mapstruct/1.2.0.Final/mapstruct-1.2.0.Final.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-spring-boot-starter-jaxws/3.2.5/cxf-spring-boot-starter-jaxws-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter/1.5.16.RELEASE/spring-boot-starter-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot/1.5.16.RELEASE/spring-boot-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-spring-boot-autoconfigure/3.2.5/cxf-spring-boot-autoconfigure-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-transports-http/3.2.5/cxf-rt-transports-http-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-core/3.2.5/cxf-core-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar:/media/GTZQ/DATA/maven/local_repos/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/ws/xmlschema/xmlschema-core/2.2.3/xmlschema-core-2.2.3.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-frontend-jaxws/3.2.5/cxf-rt-frontend-jaxws-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar:/media/GTZQ/DATA/maven/local_repos/org/ow2/asm/asm/5.2/asm-5.2.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-bindings-soap/3.2.5/cxf-rt-bindings-soap-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-wsdl/3.2.5/cxf-rt-wsdl-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-databinding-jaxb/3.2.5/cxf-rt-databinding-jaxb-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-bindings-xml/3.2.5/cxf-rt-bindings-xml-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-frontend-simple/3.2.5/cxf-rt-frontend-simple-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-ws-addr/3.2.5/cxf-rt-ws-addr-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/cxf/cxf-rt-ws-policy/3.2.5/cxf-rt-ws-policy-3.2.5.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/neethi/neethi/3.1.1/neethi-3.1.1.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/zookeeper/zookeeper/3.4.14/zookeeper-3.4.14.jar:/media/GTZQ/DATA/maven/local_repos/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/media/GTZQ/DATA/maven/local_repos/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/media/GTZQ/DATA/maven/local_repos/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/media/GTZQ/DATA/maven/local_repos/com/alibaba/druid-spring-boot-starter/1.2.9/druid-spring-boot-starter-1.2.9.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-autoconfigure/1.5.16.RELEASE/spring-boot-autoconfigure-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-starter-actuator/1.5.16.RELEASE/spring-boot-starter-actuator-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/org/springframework/boot/spring-boot-actuator/1.5.16.RELEASE/spring-boot-actuator-1.5.16.RELEASE.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/middleware/middleware-starter-fstore/1.0.3/middleware-starter-fstore-1.0.3.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/middleware/middleware-fstore-core/1.0.3/middleware-fstore-core-1.0.3.jar:/media/GTZQ/DATA/maven/local_repos/io/searchbox/jest/2.0.4/jest-2.0.4.jar:/media/GTZQ/DATA/maven/local_repos/io/searchbox/jest-common/2.0.4/jest-common-2.0.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/httpcomponents/httpcore-nio/4.4.4/httpcore-nio-4.4.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/httpcomponents/httpasyncclient/4.1.4/httpasyncclient-4.1.4.jar:/media/GTZQ/DATA/maven/local_repos/org/elasticsearch/elasticsearch/2.4.6/elasticsearch-2.4.6.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-core/5.5.4/lucene-core-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-backward-codecs/5.5.4/lucene-backward-codecs-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-analyzers-common/5.5.4/lucene-analyzers-common-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-queries/5.5.4/lucene-queries-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-memory/5.5.4/lucene-memory-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-highlighter/5.5.4/lucene-highlighter-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-queryparser/5.5.4/lucene-queryparser-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-sandbox/5.5.4/lucene-sandbox-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-suggest/5.5.4/lucene-suggest-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-misc/5.5.4/lucene-misc-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-join/5.5.4/lucene-join-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-grouping/5.5.4/lucene-grouping-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-spatial/5.5.4/lucene-spatial-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/lucene/lucene-spatial3d/5.5.4/lucene-spatial3d-5.5.4.jar:/media/GTZQ/DATA/maven/local_repos/com/spatial4j/spatial4j/0.5/spatial4j-0.5.jar:/media/GTZQ/DATA/maven/local_repos/org/elasticsearch/securesm/1.0/securesm-1.0.jar:/media/GTZQ/DATA/maven/local_repos/com/carrotsearch/hppc/0.7.1/hppc-0.7.1.jar:/media/GTZQ/DATA/maven/local_repos/joda-time/joda-time/2.9.9/joda-time-2.9.9.jar:/media/GTZQ/DATA/maven/local_repos/com/ning/compress-lzf/1.0.2/compress-lzf-1.0.2.jar:/media/GTZQ/DATA/maven/local_repos/com/tdunning/t-digest/3.0/t-digest-3.0.jar:/media/GTZQ/DATA/maven/local_repos/org/hdrhistogram/HdrHistogram/2.1.6/HdrHistogram-2.1.6.jar:/media/GTZQ/DATA/maven/local_repos/commons-cli/commons-cli/1.3.1/commons-cli-1.3.1.jar:/media/GTZQ/DATA/maven/local_repos/com/twitter/jsr166e/1.1.0/jsr166e-1.1.0.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/middleware/middleware-fstore-api/1.0.3/middleware-fstore-api-1.0.3.jar:/media/GTZQ/DATA/maven/local_repos/com/hundsun/jrescloud/middleware/middleware-base-exception/1.0.0/middleware-base-exception-1.0.0.jar:/media/GTZQ/DATA/maven/local_repos/net/coobird/thumbnailator/0.4.8/thumbnailator-0.4.8.jar:/media/GTZQ/DATA/maven/local_repos/org/apache/commons/commons-pool2/2.4.3/commons-pool2-2.4.3.jar:/media/GTZQ/DATA/maven/local_repos/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.jar:/media/GTZQ/DATA/workspace/api-repos/api-doc/target/classes:/media/GTZQ/DATA/maven/local_repos/org/objenesis/objenesis/2.1/objenesis-2.1.jar:/opt/apps/idea-iu/lib/idea_rt.jar com.hundsun.amop.tgreportfacade.server.ServiceApplication Connected to the target VM, address: '127.0.0.1:36477', transport: 'socket' 2025-10-29 10:27:48,767 main ERROR Error creating converter for xwEx java.lang.reflect.InvocationTargetException 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.apache.logging.log4j.core.pattern.PatternParser.createConverter(PatternParser.java:590) at org.apache.logging.log4j.core.pattern.PatternParser.finalizeConverter(PatternParser.java:657) at org.apache.logging.log4j.core.pattern.PatternParser.parse(PatternParser.java:420) at org.apache.logging.log4j.core.pattern.PatternParser.parse(PatternParser.java:177) at org.apache.logging.log4j.core.layout.PatternLayout$SerializerBuilder.build(PatternLayout.java:473) at org.apache.logging.log4j.core.layout.PatternLayout.<init>(PatternLayout.java:139) at org.apache.logging.log4j.core.layout.PatternLayout.<init>(PatternLayout.java:60) at org.apache.logging.log4j.core.layout.PatternLayout$Builder.build(PatternLayout.java:766) at org.apache.logging.log4j.core.layout.PatternLayout$Builder.build(PatternLayout.java:626) at org.apache.logging.log4j.core.config.plugins.util.PluginBuilder.build(PluginBuilder.java:124) at org.apache.logging.log4j.core.config.AbstractConfiguration.createPluginObject(AbstractConfiguration.java:1122) at org.apache.logging.log4j.core.config.AbstractConfiguration.createConfiguration(AbstractConfiguration.java:1047) at org.apache.logging.log4j.core.config.AbstractConfiguration.createConfiguration(AbstractConfiguration.java:1039) at org.apache.logging.log4j.core.config.AbstractConfiguration.createConfiguration(AbstractConfiguration.java:1039) at org.apache.logging.log4j.core.config.AbstractConfiguration.doConfigure(AbstractConfiguration.java:651) at org.apache.logging.log4j.core.configuration.ExtendedXmlConfigurationFactory$ExtendedXmlConfiguration.doConfigure(ExtendedXmlConfigurationFactory.java:48) at org.apache.logging.log4j.core.config.AbstractConfiguration.initialize(AbstractConfiguration.java:249) at org.apache.logging.log4j.core.config.AbstractConfiguration.start(AbstractConfiguration.java:295) at org.apache.logging.log4j.core.LoggerContext.setConfiguration(LoggerContext.java:621) at org.apache.logging.log4j.core.LoggerContext.start(LoggerContext.java:285) at org.springframework.boot.logging.log4j2.Log4J2LoggingSystem.loadConfiguration(Log4J2LoggingSystem.java:176) at org.springframework.boot.logging.log4j2.Log4J2LoggingSystem.loadDefaults(Log4J2LoggingSystem.java:159) at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithConventions(AbstractLoggingSystem.java:84) at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:59) at org.springframework.boot.logging.log4j2.Log4J2LoggingSystem.initialize(Log4J2LoggingSystem.java:148) at org.springframework.boot.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:304) at org.springframework.boot.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:277) at org.springframework.boot.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:240) at org.springframework.boot.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:213) at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:122) at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:74) at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:54) at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:325) at org.springframework.boot.SpringApplication.run(SpringApplication.java:296) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1118) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1107) at com.hundsun.jrescloud.common.boot.CloudBootstrap.run(CloudBootstrap.java:67) at com.hundsun.jrescloud.common.boot.CloudBootstrap.run(CloudBootstrap.java:48) at com.hundsun.amop.tgreportfacade.server.ServiceApplication.main(ServiceApplication.java:46) Caused by: java.lang.NoSuchMethodError: org.apache.logging.log4j.core.pattern.ExtendedThrowablePatternConverter.newInstance([Ljava/lang/String;)Lorg/apache/logging/log4j/core/pattern/ExtendedThrowablePatternConverter; at org.springframework.boot.logging.log4j2.ExtendedWhitespaceThrowablePatternConverter.<init>(ExtendedWhitespaceThrowablePatternConverter.java:43) at org.springframework.boot.logging.log4j2.ExtendedWhitespaceThrowablePatternConverter.newInstance(ExtendedWhitespaceThrowablePatternConverter.java:63) ... 46 more
最新发布
10-30
http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom (7.9 kB at 46 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.jar (33 kB at 464 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.pom (5.7 kB at 119 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-deploy-plugin/2.5/maven-deploy-plugin-2.5.jar (23 kB at 420 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.pom (5.0 kB at 98 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.17/surefire-2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/surefire/surefire/2.17/surefire-2.17.pom (17 kB at 333 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-surefire-plugin/2.17/maven-surefire-plugin-2.17.jar (34 kB at 423 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.pom (6.5 kB at 144 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-war-plugin/2.2/maven-war-plugin-2.2.jar (79 kB at 1.0 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.pom (8.1 kB at 169 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/maven/plugins/maven-resources-plugin/2.6/maven-resources-plugin-2.6.jar (30 kB at 602 kB/s) [INFO] [INFO] ---------------------------< com.sciyon:SCM >--------------------------- [INFO] Building SCM 1.0.0.0-SNAPSHOT [INFO] --------------------------------[ war ]--------------------------------- Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sciyon/syncplant5-common/1.2.3.33/syncplant5-common-1.2.3.33.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sciyon/syncplant5-common/1.2.3.33/syncplant5-common-1.2.3.33.pom (34 kB at 542 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom (5.3 kB at 118 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom (9.8 kB at 181 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-webmvc/3.2.17.RELEASE/spring-webmvc-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-webmvc/3.2.17.RELEASE/spring-webmvc-3.2.17.RELEASE.pom (8.9 kB at 168 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/3.2.17.RELEASE/spring-beans-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/3.2.17.RELEASE/spring-beans-3.2.17.RELEASE.pom (1.9 kB at 41 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/3.2.17.RELEASE/spring-core-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/3.2.17.RELEASE/spring-core-3.2.17.RELEASE.pom (2.2 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.pom (18 kB at 353 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/28/commons-parent-28.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/28/commons-parent-28.pom (50 kB at 880 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/3.2.17.RELEASE/spring-context-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/3.2.17.RELEASE/spring-context-3.2.17.RELEASE.pom (4.9 kB at 102 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/3.2.17.RELEASE/spring-aop-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/3.2.17.RELEASE/spring-aop-3.2.17.RELEASE.pom (2.5 kB at 56 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 7.7 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/3.2.17.RELEASE/spring-expression-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/3.2.17.RELEASE/spring-expression-3.2.17.RELEASE.pom (1.6 kB at 33 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/3.2.17.RELEASE/spring-web-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/3.2.17.RELEASE/spring-web-3.2.17.RELEASE.pom (7.0 kB at 160 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/3.2.17.RELEASE/spring-jdbc-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/3.2.17.RELEASE/spring-jdbc-3.2.17.RELEASE.pom (3.4 kB at 73 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/3.2.17.RELEASE/spring-tx-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/3.2.17.RELEASE/spring-tx-3.2.17.RELEASE.pom (3.2 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-jpa/1.5.2.RELEASE/spring-data-jpa-1.5.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-jpa/1.5.2.RELEASE/spring-data-jpa-1.5.2.RELEASE.pom (12 kB at 260 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-parent/1.3.2.RELEASE/spring-data-parent-1.3.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-parent/1.3.2.RELEASE/spring-data-parent-1.3.2.RELEASE.pom (23 kB at 441 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-build/1.3.2.RELEASE/spring-data-build-1.3.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/build/spring-data-build/1.3.2.RELEASE/spring-data-build-1.3.2.RELEASE.pom (2.4 kB at 65 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-framework-bom/4.0.3.RELEASE/spring-framework-bom-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-framework-bom/4.0.3.RELEASE/spring-framework-bom-4.0.3.RELEASE.pom (5.1 kB at 122 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-commons/1.7.2.RELEASE/spring-data-commons-1.7.2.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/data/spring-data-commons/1.7.2.RELEASE/spring-data-commons-1.7.2.RELEASE.pom (5.9 kB at 158 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.0.3.RELEASE/spring-core-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.0.3.RELEASE/spring-core-4.0.3.RELEASE.pom (2.3 kB at 62 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.0.3.RELEASE/spring-beans-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.0.3.RELEASE/spring-beans-4.0.3.RELEASE.pom (2.3 kB at 61 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.6/slf4j-api-1.7.6.pom (2.7 kB at 63 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.6/slf4j-parent-1.7.6.pom (12 kB at 322 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.6/jcl-over-slf4j-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/jcl-over-slf4j/1.7.6/jcl-over-slf4j-1.7.6.pom (1.9 kB at 64 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.0.3.RELEASE/spring-orm-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.0.3.RELEASE/spring-orm-4.0.3.RELEASE.pom (6.9 kB at 172 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.0.3.RELEASE/spring-jdbc-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.0.3.RELEASE/spring-jdbc-4.0.3.RELEASE.pom (3.5 kB at 110 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.0.3.RELEASE/spring-tx-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.0.3.RELEASE/spring-tx-4.0.3.RELEASE.pom (3.4 kB at 102 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.0.3.RELEASE/spring-context-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.0.3.RELEASE/spring-context-4.0.3.RELEASE.pom (4.8 kB at 48 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.0.3.RELEASE/spring-aop-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.0.3.RELEASE/spring-aop-4.0.3.RELEASE.pom (2.7 kB at 60 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.0.3.RELEASE/spring-expression-4.0.3.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.0.3.RELEASE/spring-expression-4.0.3.RELEASE.pom (1.7 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjrt/1.7.4/aspectjrt-1.7.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjrt/1.7.4/aspectjrt-1.7.4.pom (1.0 kB at 24 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/3.2.17.RELEASE/spring-orm-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/3.2.17.RELEASE/spring-orm-3.2.17.RELEASE.pom (5.9 kB at 128 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context-support/3.2.17.RELEASE/spring-context-support-3.2.17.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context-support/3.2.17.RELEASE/spring-context-support-3.2.17.RELEASE.pom (4.5 kB at 101 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjweaver/1.7.1/aspectjweaver-1.7.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/aspectj/aspectjweaver/1.7.1/aspectjweaver-1.7.1.pom (1.0 kB at 28 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-explorer/5.22.0/activiti-explorer-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-explorer/5.22.0/activiti-explorer-5.22.0.pom (6.9 kB at 136 kB/s) Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/33/commons-parent-33.pom (53 kB at 1.0 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.6/joda-time-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.6/joda-time-2.6.pom (27 kB at 531 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-process-validation/5.22.0/activiti-process-validation-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-process-validation/5.22.0/activiti-process-validation-5.22.0.pom (3.3 kB at 76 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-image-generator/5.22.0/activiti-image-generator-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-image-generator/5.22.0/activiti-image-generator-5.22.0.pom (3.5 kB at 77 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-email/1.4/commons-email-1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-email/1.4/commons-email-1.4.pom (17 kB at 330 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/37/commons-parent-37.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/37/commons-parent-37.pom (63 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/16/apache-16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/16/apache-16.pom (15 kB at 385 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/javax.mail/1.5.2/javax.mail-1.5.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/javax.mail/1.5.2/javax.mail-1.5.2.pom (4.3 kB at 110 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/all/1.5.2/all-1.5.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/mail/all/1.5.2/all-1.5.2.pom (20 kB at 531 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/1/jvnet-parent-1.pom (4.7 kB at 118 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1/activation-1.1.pom (1.1 kB at 25 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1.1/activation-1.1.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/activation/activation/1.1.1/activation-1.1.1.pom (644 B at 17 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis/3.3.0/mybatis-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis/3.3.0/mybatis-3.3.0.pom (11 kB at 317 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis-parent/24/mybatis-parent-24.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/mybatis/mybatis-parent/24/mybatis-parent-24.pom (32 kB at 791 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.1.5.RELEASE/spring-beans-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-beans/4.1.5.RELEASE/spring-beans-4.1.5.RELEASE.pom (2.5 kB at 71 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.1.5.RELEASE/spring-core-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-core/4.1.5.RELEASE/spring-core-4.1.5.RELEASE.pom (2.5 kB at 64 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 436 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/34/commons-parent-34.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-spring/5.22.0/activiti-spring-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-spring/5.22.0/activiti-spring-5.22.0.pom (14 kB at 386 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.1.5.RELEASE/spring-context-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-context/4.1.5.RELEASE/spring-context-4.1.5.RELEASE.pom (4.8 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.1.5.RELEASE/spring-aop-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-aop/4.1.5.RELEASE/spring-aop-4.1.5.RELEASE.pom (2.7 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.1.5.RELEASE/spring-expression-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-expression/4.1.5.RELEASE/spring-expression-4.1.5.RELEASE.pom (1.7 kB at 45 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.1.5.RELEASE/spring-jdbc-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-jdbc/4.1.5.RELEASE/spring-jdbc-4.1.5.RELEASE.pom (3.5 kB at 107 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.1.5.RELEASE/spring-tx-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-tx/4.1.5.RELEASE/spring-tx-4.1.5.RELEASE.pom (3.4 kB at 70 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.1.5.RELEASE/spring-orm-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-orm/4.1.5.RELEASE/spring-orm-4.1.5.RELEASE.pom (6.9 kB at 176 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-dbcp/commons-dbcp/1.4/commons-dbcp-1.4.pom (11 kB at 293 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/12/commons-parent-12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/12/commons-parent-12.pom (27 kB at 769 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-pool/commons-pool/1.5.4/commons-pool-1.5.4.pom (11 kB at 311 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-json-converter/5.22.0/activiti-json-converter-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-json-converter/5.22.0/activiti-json-converter-5.22.0.pom (5.2 kB at 138 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/math/geom2d/javaGeom/0.11.1/javaGeom-0.11.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/math/geom2d/javaGeom/0.11.1/javaGeom-0.11.1.pom (1.6 kB at 40 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-simple-workflow/5.22.0/activiti-simple-workflow-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-simple-workflow/5.22.0/activiti-simple-workflow-5.22.0.pom (5.5 kB at 157 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-bpmn-layout/5.22.0/activiti-bpmn-layout-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-bpmn-layout/5.22.0/activiti-bpmn-layout-5.22.0.pom (4.0 kB at 81 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/tinyjee/jgraphx/jgraphx/1.10.4.1/jgraphx-1.10.4.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/tinyjee/jgraphx/jgraphx/1.10.4.1/jgraphx-1.10.4.1.pom (8.8 kB at 205 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-crystalball/5.22.0/activiti-crystalball-5.22.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/activiti/activiti-crystalball/5.22.0/activiti-crystalball-5.22.0.pom (4.4 kB at 115 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.7.6/slf4j-log4j12-1.7.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-log4j12/1.7.6/slf4j-log4j12-1.7.6.pom (1.6 kB at 48 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/log4j/log4j/1.2.17/log4j-1.2.17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/log4j/log4j/1.2.17/log4j-1.2.17.pom (22 kB at 558 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.8/vaadin-6.8.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.8/vaadin-6.8.8.pom (3.1 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/h2database/h2/1.3.176/h2-1.3.176.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/h2database/h2/1.3.176/h2-1.3.176.pom (973 B at 22 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/4.1.5.RELEASE/spring-web-4.1.5.RELEASE.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/springframework/spring-web/4.1.5.RELEASE/spring-web-4.1.5.RELEASE.pom (7.5 kB at 164 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/imgscalr/imgscalr-lib/4.2/imgscalr-lib-4.2.pom (3.6 kB at 97 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.0.1/commons-io-2.0.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.0.1/commons-io-2.0.1.pom (9.0 kB at 220 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/15/commons-parent-15.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/15/commons-parent-15.pom (32 kB at 674 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/7/apache-7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/7/apache-7.pom (14 kB at 321 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/groovy/groovy-all/2.4.5/groovy-all-2.4.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/groovy/groovy-all/2.4.5/groovy-all-2.4.5.pom (20 kB at 497 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.2.3/jackson-core-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.2.3/jackson-core-2.2.3.pom (6.0 kB at 133 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/10/oss-parent-10.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/10/oss-parent-10.pom (23 kB at 647 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.2.3/jackson-databind-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.2.3/jackson-databind-2.2.3.pom (5.4 kB at 149 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/11/oss-parent-11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/oss-parent/11/oss-parent-11.pom (23 kB at 594 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.2.3/jackson-annotations-2.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.2.3/jackson-annotations-2.2.3.pom (1.3 kB at 31 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.18/vaadin-6.8.18.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/vaadin/vaadin/6.8.18/vaadin-6.8.18.pom (3.1 kB at 78 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-core/1.12.0/shiro-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-core/1.12.0/shiro-core-1.12.0.pom (5.2 kB at 82 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-root/1.12.0/shiro-root-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-root/1.12.0/shiro-root-1.12.0.pom (75 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/29/apache-29.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/29/apache-29.pom (21 kB at 414 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-lang/1.12.0/shiro-lang-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-lang/1.12.0/shiro-lang-1.12.0.pom (3.2 kB at 77 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 67 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 336 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-cache/1.12.0/shiro-cache-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-cache/1.12.0/shiro-cache-1.12.0.pom (2.4 kB at 56 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-hash/1.12.0/shiro-crypto-hash-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-hash/1.12.0/shiro-crypto-hash-1.12.0.pom (3.1 kB at 68 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto/1.12.0/shiro-crypto-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto/1.12.0/shiro-crypto-1.12.0.pom (1.5 kB at 41 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-core/1.12.0/shiro-crypto-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-core/1.12.0/shiro-crypto-core-1.12.0.pom (2.4 kB at 49 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-cipher/1.12.0/shiro-crypto-cipher-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-crypto-cipher/1.12.0/shiro-crypto-cipher-1.12.0.pom (3.3 kB at 72 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-core/1.12.0/shiro-config-core-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-core/1.12.0/shiro-config-core-1.12.0.pom (2.4 kB at 57 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config/1.12.0/shiro-config-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config/1.12.0/shiro-config-1.12.0.pom (1.5 kB at 37 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-ogdl/1.12.0/shiro-config-ogdl-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-config-ogdl/1.12.0/shiro-config-ogdl-1.12.0.pom (4.1 kB at 88 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-event/1.12.0/shiro-event-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-event/1.12.0/shiro-event-1.12.0.pom (2.4 kB at 59 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 367 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/47/commons-parent-47.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 1.4 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 288 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 1.3 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-web/1.12.0/shiro-web-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-web/1.12.0/shiro-web-1.12.0.pom (4.5 kB at 116 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder/1.2.3/encoder-1.2.3.pom (4.1 kB at 88 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/owasp/encoder/encoder-parent/1.2.3/encoder-parent-1.2.3.pom (20 kB at 430 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-spring/1.12.0/shiro-spring-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-spring/1.12.0/shiro-spring-1.12.0.pom (4.5 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-support/1.12.0/shiro-support-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-support/1.12.0/shiro-support-1.12.0.pom (1.8 kB at 42 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-ehcache/1.12.0/shiro-ehcache-1.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/shiro/shiro-ehcache/1.12.0/shiro-ehcache-1.12.0.pom (3.1 kB at 71 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-core/2.6.11/ehcache-core-2.6.11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-core/2.6.11/ehcache-core-2.6.11.pom (31 kB at 728 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-parent/2.5/ehcache-parent-2.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/sf/ehcache/ehcache-parent/2.5/ehcache-parent-2.5.pom (16 kB at 387 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.pom (3.0 kB at 79 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/slf4j/slf4j-parent/1.6.1/slf4j-parent-1.6.1.pom (9.3 kB at 274 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.9.7/joda-time-2.9.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/joda-time/joda-time/2.9.7/joda-time-2.9.7.pom (33 kB at 803 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/jodd/jodd/3.3.8/jodd-3.3.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/jodd/jodd/3.3.8/jodd-3.3.8.pom (1.9 kB at 65 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 427 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/17/commons-parent-17.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 725 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 681 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/52/commons-parent-52.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 1.8 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/23/apache-23.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/23/apache-23.pom (18 kB at 449 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 119 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/dom4j/dom4j/1.6.1/dom4j-1.6.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/dom4j/dom4j/1.6.1/dom4j-1.6.1.pom (6.8 kB at 165 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 66 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/core/3.3.0/core-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/core/3.3.0/core-3.3.0.pom (2.1 kB at 59 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/zxing-parent/3.3.0/zxing-parent-3.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/google/zxing/zxing-parent/3.3.0/zxing-parent-3.3.0.pom (28 kB at 644 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 377 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/alibaba/fastjson/1.2.83/fastjson-1.2.83.pom (11 kB at 248 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 150 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 364 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 807 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 142 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 338 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 368 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/42/commons-parent-42.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 1.7 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.pom (5.2 kB at 141 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.8.0/commons-io-2.8.0.pom (16 kB at 410 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-fileupload/commons-fileupload/1.5/commons-fileupload-1.5.pom (16 kB at 377 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/56/commons-parent-56.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/commons/commons-parent/56/commons-parent-56.pom (82 kB at 1.8 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 166 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 470 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 134 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.11.0/jackson-core-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.11.0/jackson-core-2.11.0.pom (4.9 kB at 122 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.11.0/jackson-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-base/2.11.0/jackson-base-2.11.0.pom (7.4 kB at 173 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jackson-bom/2.11.0/jackson-bom-2.11.0.pom (13 kB at 272 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.11.0/jackson-databind-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-databind/2.11.0/jackson-databind-2.11.0.pom (7.4 kB at 151 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.11.0/jackson-jaxrs-json-provider-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.11.0/jackson-jaxrs-json-provider-2.11.0.pom (4.0 kB at 76 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.11.0/jackson-jaxrs-providers-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-providers/2.11.0/jackson-jaxrs-providers-2.11.0.pom (4.8 kB at 94 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.11.0/jackson-jaxrs-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.11.0/jackson-jaxrs-base-2.11.0.pom (1.7 kB at 39 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.11.0/jackson-annotations-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.11.0/jackson-annotations-2.11.0.pom (3.5 kB at 81 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.0/jackson-module-jaxb-annotations-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.11.0/jackson-module-jaxb-annotations-2.11.0.pom (3.5 kB at 86 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.11.0/jackson-modules-base-2.11.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.11.0/jackson-modules-base-2.11.0.pom (3.4 kB at 86 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api/2.3.2/jakarta.xml.bind-api-2.3.2.pom (16 kB at 302 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api-parent/2.3.2/jakarta.xml.bind-api-parent-2.3.2.pom (7.7 kB at 150 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/jakarta/activation/jakarta.activation-api/1.2.1/jakarta.activation-api-1.2.1.pom (4.6 kB at 91 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/activation/all/1.2.1/all-1.2.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/activation/all/1.2.1/all-1.2.1.pom (18 kB at 402 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/eclipse/ee4j/project/1.0.2/project-1.0.2.pom (12 kB at 322 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/3.0.0/cxf-rt-frontend-jaxws-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxws/3.0.0/cxf-rt-frontend-jaxws-3.0.0.pom (19 kB at 446 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-parent/3.0.0/cxf-parent-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-parent/3.0.0/cxf-parent-3.0.0.pom (93 kB at 1.7 MB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf/3.0.0/cxf-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf/3.0.0/cxf-3.0.0.pom (34 kB at 841 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.pom (1.6 kB at 34 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/3/apache-3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/3/apache-3.pom (3.4 kB at 90 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm/3.3.1/asm-3.3.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm/3.3.1/asm-3.3.1.pom (266 B at 7.4 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/asm/asm-parent/3.3.1/asm-parent-3.3.1.pom (4.3 kB at 111 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-core/3.0.0/cxf-core-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-core/3.0.0/cxf-core-3.0.0.pom (17 kB at 416 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.3.0/woodstox-core-asl-4.3.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/woodstox-core-asl/4.3.0/woodstox-core-asl-4.3.0.pom (1.8 kB at 39 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.pom (5.5 kB at 117 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.1.0/xmlschema-core-2.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema-core/2.1.0/xmlschema-core-2.1.0.pom (5.8 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.1.0/xmlschema-2.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/ws/xmlschema/xmlschema/2.1.0/xmlschema-2.1.0.pom (29 kB at 666 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/9/apache-9.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/apache/9/apache-9.pom (15 kB at 370 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/3.0.0/cxf-rt-bindings-soap-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-soap/3.0.0/cxf-rt-bindings-soap-3.0.0.pom (4.2 kB at 97 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-wsdl/3.0.0/cxf-rt-wsdl-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-wsdl/3.0.0/cxf-rt-wsdl-3.0.0.pom (4.9 kB at 114 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/wsdl4j/wsdl4j/1.6.3/wsdl4j-1.6.3.pom (1.1 kB at 29 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/3.0.0/cxf-rt-databinding-jaxb-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-jaxb/3.0.0/cxf-rt-databinding-jaxb-3.0.0.pom (5.4 kB at 146 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-impl/2.2.7/jaxb-impl-2.2.7.pom (4.7 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/bind/jaxb-core/2.2.7/jaxb-core-2.2.7.pom (4.4 kB at 103 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons-runtime/2.16/istack-commons-runtime-2.16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons-runtime/2.16/istack-commons-runtime-2.16.pom (3.6 kB at 91 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons/2.16/istack-commons-2.16.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/istack/istack-commons/2.16/istack-commons-2.16.pom (12 kB at 328 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 154 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.12/FastInfoset-1.2.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/FastInfoset/1.2.12/FastInfoset-1.2.12.pom (1.4 kB at 40 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.12/fastinfoset-project-1.2.12.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/sun/xml/fastinfoset/fastinfoset-project/1.2.12/fastinfoset-project-1.2.12.pom (11 kB at 261 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/3.0.0/cxf-rt-bindings-xml-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-bindings-xml/3.0.0/cxf-rt-bindings-xml-3.0.0.pom (5.2 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/3.0.0/cxf-rt-frontend-simple-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-simple/3.0.0/cxf-rt-frontend-simple-3.0.0.pom (5.4 kB at 124 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/3.0.0/cxf-rt-ws-addr-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-addr/3.0.0/cxf-rt-ws-addr-3.0.0.pom (3.8 kB at 96 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-policy/3.0.0/cxf-rt-ws-policy-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-ws-policy/3.0.0/cxf-rt-ws-policy-3.0.0.pom (10.0 kB at 249 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/neethi/neethi/3.0.3/neethi-3.0.3.pom (13 kB at 293 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-aegis/3.0.0/cxf-rt-databinding-aegis-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-databinding-aegis/3.0.0/cxf-rt-databinding-aegis-3.0.0.pom (5.7 kB at 121 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/3.0.0/cxf-rt-transports-http-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-transports-http/3.0.0/cxf-rt-transports-http-3.0.0.pom (7.0 kB at 145 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-rs-client/3.0.0/cxf-rt-rs-client-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-rs-client/3.0.0/cxf-rt-rs-client-3.0.0.pom (4.4 kB at 105 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxrs/3.0.0/cxf-rt-frontend-jaxrs-3.0.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/org/apache/cxf/cxf-rt-frontend-jaxrs/3.0.0/cxf-rt-frontend-jaxrs-3.0.0.pom (8.7 kB at 197 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/ws/rs/javax.ws.rs-api/2.0/javax.ws.rs-api-2.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/ws/rs/javax.ws.rs-api/2.0/javax.ws.rs-api-2.0.pom (20 kB at 406 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (13 kB at 305 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/oracle/ojdbc/6.0/ojdbc-6.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/oracle/ojdbc/6.0/ojdbc-6.0.pom (445 B at 48 B/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/microsoft/sqlserver/4.1.0/sqlserver-4.1.0.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/microsoft/sqlserver/4.1.0/sqlserver-4.1.0.pom (458 B at 184 B/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/mysql/mysql-connector-java/5.1.46/mysql-connector-java-5.1.46.pom (1.1 kB at 23 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/freemarker/freemarker/2.3.8/freemarker-2.3.8.pom Downloaded from nexus: http://10.88.12.5:8081/nexus/content/groups/public/freemarker/freemarker/2.3.8/freemarker-2.3.8.pom (670 B at 18 kB/s) Downloading from nexus: http://10.88.12.5:8081/nexus/content/groups/public/com/dingtalk/client-sdk.api/1.0.0/client-sdk.api-1.0.0.pom Progress (1): 462 B 19-Sep-2025 11:08:34.999 严重 [http-nio-8080-exec-4] org.apache.catalina.core.StandardWrapperValve.invoke 在路径为/SCM的上下文中,Servlet[springServlet]的Servlet.service()引发了具有根本原因的异常Handler processing failed; nested exception is java.lang.NoSuchMethodError: org.hibernate.engine.spi.SessionFactoryImplementor.getConnectionProvider()Lorg/hibernate/service/jdbc/connections/spi/ConnectionProvider; java.lang.NoSuchMethodError: org.hibernate.engine.spi.SessionFactoryImplementor.getConnectionProvider()Lorg/hibernate/service/jdbc/connections/spi/ConnectionProvider;
09-20
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值