JDK7新特性<三> JDBC4.1

本文详细解读了JDBC4.1的两个新特性:Connection、ResultSet和Statement实现了Closeable接口,使得try-with-resources语句下资源自动关闭;以及引入RowSet1.1,包括RowSetFactory接口和RowSetProvider类,用于创建不同类型的rowsets。

JDBC4.1更新了两个新特性

 

1.   Connection,ResultSet 和 Statement 都实现了Closeable 接口,所有在 try-with-resources 语句中调用,就可以自动关闭相关资源了

 

Java代码   收藏代码
  1. try (Statement stmt = con.createStatement()){  
  2.         …  
  3. }  

 

2. RowSet 1.1:引入RowSetFactory接口和RowSetProvider类,可以创建JDBC driver支持的各种 row sets

 

Java代码   收藏代码
  1. RowSetFactory myRowSetFactory = null;  
  2. JdbcRowSet jdbcRs = null;  
  3. ResultSet rs = null;  
  4. Statement stmt = null;  
  5.   
  6. try {  
  7.   
  8.   myRowSetFactory = RowSetProvider.newFactory();//用缺省的RowSetFactory 实现  
  9.   jdbcRs = myRowSetFactory.createJdbcRowSet();  
  10.     
  11.   //创建一个 JdbcRowSet 对象,配置数据库连接属性  
  12.   jdbcRs.setUrl("jdbc:myDriver:myAttribute");  
  13.   jdbcRs.setUsername(username);  
  14.   jdbcRs.setPassword(password);  
  15.   
  16.   jdbcRs.setCommand("select ID from TEST");  
  17.   jdbcRs.execute();  
  18. }  

 

 RowSetFactory 接口包括了创建不同类型的RowSet的方法

 •createCachedRowSet

 •createFilteredRowSet

 •createJdbcRowSet

 •createJoinRowSet

 •createWebRowSet


参考资料

Jdk7官网 http://openjdk.java.net/projects/jdk7/

<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.crmp.ecc</groupId> <artifactId>crmp-data-syncjob</artifactId> <packaging>pom</packaging> <version>1.0.0-SNAPSHOT</version> <modules> <module>crmp-data-syncjob-common</module> <module>crmp-data-syncjob-dao</module> <module>crmp-data-syncjob-domain</module> <module>crmp-data-syncjob-service</module> <module>crmp-data-syncjob-web</module> </modules> <name>多数据源同步服务</name> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.18</version> <relativePath/> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>11</java.version> <!-- 框架版本 --> <flink.version>1.19.3</flink.version> <flink-cdc.version>3.2.0</flink-cdc.version> <debezium.version>1.9.8.Final</debezium.version> <scala.binary.version>2.12</scala.binary.version> <!-- 数据库与中间件依赖 --> <mysql.version>8.0.21</mysql.version> <druid.version>1.2.21</druid.version> <mybatis.version>2.3.1</mybatis.version> <kafka-clients.version>2.8.1</kafka-clients.version> <!-- 工具类与文档 --> <lombok.version>1.18.30</lombok.version> <hutool.version>5.8.6</hutool.version> <commons.math3.version>3.6.1</commons.math3.version> <!-- 统一SLF4J版本(与Flink 1.19.3兼容) --> <slf4j.version>1.7.36</slf4j.version> <!-- Infinispan统一版本(避免传递依赖冲突) --> <infinispan.version>13.0.20.Final</infinispan.version> </properties> <!-- 依赖管理:统一锁定版本,优先级:BOM > 显式声明 --> <dependencyManagement> <dependencies> <!-- 1. Debezium BOM:优先锁定所有Debezium子依赖版本(包括传递依赖) --> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-bom</artifactId> <version>${debezium.version}</version> <type>pom</type> <scope>import</scope> </dependency> <!-- 2. Spring Cloud 依赖(与Spring Boot 2.7.18兼容) --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>2021.0.8</version> <type>pom</type> <scope>import</scope> </dependency> <!-- 3. 核心依赖版本锁定 --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons</artifactId> <version>${infinispan.version}</version> </dependency> <!-- 4. Debezium核心组件(已通过BOM锁定版本,此处仅声明排除规则)--> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-core</artifactId> <version>${debezium.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> <exclusion> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-jdk11</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-connector-mysql</artifactId> <version>${debezium.version}</version> <exclusions> <exclusion> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-jdk11</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-connector-oracle</artifactId> <version>${debezium.version}</version> <exclusions> <exclusion> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-jdk11</artifactId> </exclusion> </exclusions> </dependency> <!-- 5. Flink CDC组件 --> <!-- <dependency> <groupId>com.ververica</groupId> <artifactId>flink-connector-mysql-cdc</artifactId> <version>${flink-cdc.version}</version> </dependency> <dependency> <groupId>com.ververica</groupId> <artifactId>flink-connector-oracle-cdc</artifactId> <version>${flink-cdc.version}</version> </dependency>--> <!-- 6. 子模块版本管理 --> <dependency> <groupId>com.crmp.ecc</groupId> <artifactId>crmp-data-syncjob-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.crmp.ecc</groupId> <artifactId>crmp-data-syncjob-dao</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.crmp.ecc</groupId> <artifactId>crmp-data-syncjob-domain</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.crmp.ecc</groupId> <artifactId>crmp-data-syncjob-service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>${commons.math3.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- ========== Spring Boot核心:排除日志冲突 ========== --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <!-- ========== 测试依赖 ========== --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> <!-- ========== 工具类 ========== --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>${hutool.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.16.0</version> </dependency> <!-- ========== 数据库依赖 ========== --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>${druid.version}</version> <exclusions> <exclusion> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> </exclusion> <exclusion> <groupId>com.googlecode</groupId> <artifactId>hibernate-memcached</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>${mybatis.version}</version> </dependency> <!-- Oracle驱动 --> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc10</artifactId> <version>19.10.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.oracle.database.nls</groupId> <artifactId>orai18n</artifactId> <version>19.10.0.0</version> </dependency> <!-- 人大金仓 --> <dependency> <groupId>com.kingbase8.jdbc</groupId> <artifactId>kingbase8</artifactId> <version>8.6.0</version> </dependency> <!-- ========== Flink核心依赖 ========== --> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-clients</artifactId> <version>${flink.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-api-java-bridge</artifactId> <version>${flink.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-planner_${scala.binary.version}</artifactId> <version>${flink.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-statebackend-rocksdb</artifactId> <version>${flink.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-json</artifactId> <version>${flink.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>31.1-jre</version> <scope>provided</scope> </dependency> <!-- ========== CDC连接器(核心修改:排除Infinispan-jdk11依赖) ========== --> <!-- Mysql CDC:排除传递的Debezium和Infinispan问题依赖 --> <!--<dependency> <groupId>com.ververica</groupId> <artifactId>flink-connector-mysql-cdc</artifactId> <exclusions> <exclusion> <groupId>org.apache.flink</groupId> <artifactId>flink-core</artifactId> </exclusion> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> <exclusion> <groupId>org.apache.flink</groupId> <artifactId>flink-streaming-java</artifactId> </exclusion> <exclusion> <groupId>io.debezium</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> <!– 排除Flink CDC传递的Infinispan问题依赖 –> <exclusion> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-jdk11</artifactId> </exclusion> </exclusions> </dependency>--> <!-- Oracle CDC:排除传递的Debezium和Infinispan问题依赖 --> <!--<dependency> <groupId>com.ververica</groupId> <artifactId>flink-connector-oracle-cdc</artifactId> <exclusions> <exclusion> <groupId>org.apache.flink</groupId> <artifactId>flink-core</artifactId> </exclusion> <exclusion> <groupId>io.debezium</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> <exclusion> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-jdk11</artifactId> </exclusion> </exclusions> </dependency>--> <!-- 人大金仓CDC --> <dependency> <groupId>com.kingbase</groupId> <artifactId>flink-sql-cdc-connector-kes-v2</artifactId> <version>3.2-SNAPSHOT</version> <exclusions> <!-- <exclusion> <groupId>io.debezium</groupId> <artifactId>*</artifactId> </exclusion>--> <exclusion> <groupId>org.infinispan</groupId> <artifactId>infinispan-commons-jdk11</artifactId> </exclusion> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> </exclusions> </dependency> <!-- ========== 显式引入Debezium核心组件 ========== --> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-core</artifactId> </dependency> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-connector-mysql</artifactId> </dependency> <dependency> <groupId>io.debezium</groupId> <artifactId>debezium-connector-oracle</artifactId> </dependency> <!-- ========== Flink补充依赖 ========== --> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-core</artifactId> <version>${flink.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-streaming-java</artifactId> <version>${flink.version}</version> <exclusions> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> </exclusion> </exclusions> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>${commons.math3.version}</version> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-connector-base</artifactId> <version>${flink.version}</version> </dependency> <!-- ========== Kafka依赖 ========== --> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-connector-kafka</artifactId> <version>3.2.0-1.19</version> <exclusions> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> <version>${kafka-clients.version}</version> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>connect-api</artifactId> <version>${kafka-clients.version}</version> <exclusions> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>connect-json</artifactId> <version>${kafka-clients.version}</version> <exclusions> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>connect-transforms</artifactId> <version>${kafka-clients.version}</version> <exclusions> <exclusion> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </exclusion> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <!-- ========== Doris连接器 ========== --> <dependency> <groupId>org.apache.doris</groupId> <artifactId>flink-doris-connector-1.19</artifactId> <version>25.1.0</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.12.7</version> </dependency> <!-- ========== Hadoop支持 ========== --> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-hadoop-compatibility_2.12</artifactId> <version>${flink.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>3.3.6</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <exclusion> <groupId>org.apache.yetus</groupId> <artifactId>audience-annotations</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>3.3.6</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> <exclusion> <groupId>org.apache.yetus</groupId> <artifactId>audience-annotations</artifactId> </exclusion> </exclusions> </dependency> <!-- ========== 其他工具依赖 ========== --> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>2.0.39</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.3.2</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20231013</version> </dependency> </dependencies> <!-- 环境配置 --> <profiles> <profile> <id>dev</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <profileActive>dev</profileActive> </properties> </profile> <profile> <id>prod</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <profileActive>prod</profileActive> </properties> </profile> </profiles> </project> pom配置,[tailweb@ecs-gtcg-gtcg-app-k-ww173010 /home/flink/current/lib]$ll 总用量 304076 -rw-r--r-- 1 tailweb tailweb 3448 9月 28 10:36 animal-sniffer-annotations-1.17.jar -rw-r--r-- 1 tailweb tailweb 20437 9月 28 10:36 audience-annotations-0.5.0.jar -rw-r--r-- 1 tailweb tailweb 436303 9月 28 10:36 avro-1.7.7.jar -rw-r--r-- 1 tailweb tailweb 193322 9月 28 10:36 checker-qual-2.5.2.jar -rw-r--r-- 1 tailweb tailweb 246918 9月 28 10:36 commons-beanutils-1.9.4.jar -rw-r--r-- 1 tailweb tailweb 58284 9月 23 19:09 commons-cli-1.5.0.jar -rw-r--r-- 1 tailweb tailweb 353793 9月 28 10:36 commons-codec-1.15.jar -rw-r--r-- 1 tailweb tailweb 588337 9月 28 10:36 commons-collections-3.2.2.jar -rw-r--r-- 1 tailweb tailweb 1018316 9月 28 10:36 commons-compress-1.21.jar -rw-r--r-- 1 tailweb tailweb 632505 9月 28 10:36 commons-configuration2-2.8.0.jar -rw-r--r-- 1 tailweb tailweb 24239 9月 28 10:36 commons-daemon-1.0.13.jar -rw-r--r-- 1 tailweb tailweb 285424 9月 28 10:36 commons-io-2.8.0.jar -rw-r--r-- 1 tailweb tailweb 587402 9月 28 10:36 commons-lang3-3.12.0.jar -rw-r--r-- 1 tailweb tailweb 62050 9月 28 10:36 commons-logging-1.1.3.jar -rw-r--r-- 1 tailweb tailweb 1599627 9月 28 10:36 commons-math3-3.1.1.jar -rw-r--r-- 1 tailweb tailweb 316431 9月 28 10:36 commons-net-3.9.0.jar -rw-r--r-- 1 tailweb tailweb 238400 9月 28 10:36 commons-text-1.10.0.jar -rw-r--r-- 1 tailweb tailweb 98755 11月 26 10:38 connect-api-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 32082 11月 26 10:38 connect-json-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 93051 11月 26 10:38 connect-transforms-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 2983237 9月 28 10:36 curator-client-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 336384 9月 28 10:36 curator-framework-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 315569 9月 28 10:36 curator-recipes-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 307637 9月 28 10:36 dnsjava-2.1.7.jar -rw-r--r-- 1 tailweb tailweb 3727 9月 28 10:36 failureaccess-1.0.jar -rw-r--r-- 1 tailweb tailweb 198149 6月 13 01:50 flink-cep-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 559150 6月 13 01:52 flink-connector-files-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 102376 6月 13 01:53 flink-csv-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 125376107 6月 13 01:56 flink-dist-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 203669 6月 13 01:53 flink-json-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 21060372 6月 13 01:56 flink-scala_2.12-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 30335722 11月 24 12:02 flink-sql-cdc-connector-kes-v2-3.2-SNAPSHOT.jar -rw-r--r-- 1 tailweb tailweb 15622482 6月 13 01:56 flink-table-api-java-uber-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 38282838 6月 13 01:56 flink-table-planner-loader-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 3523628 6月 13 01:50 flink-table-runtime-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 249277 9月 28 10:36 gson-2.9.0.jar -rw-r--r-- 1 tailweb tailweb 2747878 9月 28 10:36 guava-27.0-jre.jar -rw-r--r-- 1 tailweb tailweb 25105 9月 28 10:36 hadoop-annotations-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 106144 9月 28 10:36 hadoop-auth-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 4602540 9月 28 10:35 hadoop-common-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 3524722 9月 28 10:35 hadoop-common-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 6304455 9月 28 10:36 hadoop-hdfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 6158328 9月 28 10:36 hadoop-hdfs-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 5533901 9月 28 10:36 hadoop-hdfs-client-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 129732 9月 28 10:36 hadoop-hdfs-client-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 251499 9月 28 10:36 hadoop-hdfs-httpfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 9588 9月 28 10:36 hadoop-hdfs-native-client-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 9588 9月 28 10:36 hadoop-hdfs-native-client-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 115640 9月 28 10:36 hadoop-hdfs-nfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 1155906 9月 28 10:36 hadoop-hdfs-rbf-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 471540 9月 28 10:36 hadoop-hdfs-rbf-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 96472 9月 28 10:35 hadoop-kms-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 170377 9月 28 10:35 hadoop-nfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 187845 9月 28 10:35 hadoop-registry-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 3362359 9月 28 10:36 hadoop-shaded-guava-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 1477052 9月 28 10:36 hadoop-shaded-protobuf_3_7-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 780321 9月 28 10:36 httpclient-4.5.13.jar -rw-r--r-- 1 tailweb tailweb 328593 9月 28 10:36 httpcore-4.4.13.jar -rw-r--r-- 1 tailweb tailweb 8782 9月 28 10:36 j2objc-annotations-1.1.jar -rw-r--r-- 1 tailweb tailweb 75705 9月 28 10:36 jackson-annotations-2.12.7.jar -rw-r--r-- 1 tailweb tailweb 365538 9月 28 10:36 jackson-core-2.12.7.jar -rw-r--r-- 1 tailweb tailweb 232248 9月 28 10:36 jackson-core-asl-1.9.13.jar -rw-r--r-- 1 tailweb tailweb 1512418 9月 28 10:36 jackson-databind-2.12.7.1.jar -rw-r--r-- 1 tailweb tailweb 780664 9月 28 10:36 jackson-mapper-asl-1.9.13.jar -rw-r--r-- 1 tailweb tailweb 44399 9月 28 10:36 jakarta.activation-api-1.2.1.jar -rw-r--r-- 1 tailweb tailweb 95806 9月 28 10:36 javax.servlet-api-3.1.0.jar -rw-r--r-- 1 tailweb tailweb 102244 9月 28 10:36 jaxb-api-2.2.11.jar -rw-r--r-- 1 tailweb tailweb 890168 9月 28 10:36 jaxb-impl-2.2.3-1.jar -rw-r--r-- 1 tailweb tailweb 4722 9月 28 10:36 jcip-annotations-1.0-1.jar -rw-r--r-- 1 tailweb tailweb 436731 9月 28 10:36 jersey-core-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 158695 9月 28 10:36 jersey-json-1.20.jar -rw-r--r-- 1 tailweb tailweb 705276 9月 28 10:36 jersey-server-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 128990 9月 28 10:36 jersey-servlet-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 90184 9月 28 10:36 jettison-1.5.4.jar -rw-r--r-- 1 tailweb tailweb 235225 9月 28 10:36 jetty-http-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 183020 9月 28 10:36 jetty-io-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 118512 9月 28 10:36 jetty-security-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 736865 9月 28 10:36 jetty-server-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 146077 9月 28 10:36 jetty-servlet-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 583590 9月 28 10:36 jetty-util-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 66653 9月 28 10:36 jetty-util-ajax-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 140321 9月 28 10:36 jetty-webapp-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 68302 9月 28 10:36 jetty-xml-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 282591 9月 28 10:36 jsch-0.1.55.jar -rw-r--r-- 1 tailweb tailweb 100636 9月 28 10:36 jsp-api-2.1.jar -rw-r--r-- 1 tailweb tailweb 19936 9月 28 10:36 jsr305-3.0.2.jar -rw-r--r-- 1 tailweb tailweb 46367 9月 28 10:36 jsr311-api-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 4519 9月 28 10:36 jul-to-slf4j-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 4614888 11月 26 10:39 kafka-clients-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 80980 9月 28 10:36 kerb-admin-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 113017 9月 28 10:36 kerb-client-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 65464 9月 28 10:36 kerb-common-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 226672 9月 28 10:36 kerb-core-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 116120 9月 28 10:36 kerb-crypto-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 20046 9月 28 10:36 kerb-identity-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 82756 9月 28 10:36 kerb-server-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 20409 9月 28 10:36 kerb-simplekdc-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 36708 9月 28 10:36 kerb-util-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 102174 9月 28 10:36 kerby-asn1-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 30674 9月 28 10:36 kerby-config-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 204650 9月 28 10:36 kerby-pkix-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 40554 9月 28 10:36 kerby-util-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 29134 9月 28 10:36 kerby-xdr-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 2199 9月 28 10:36 listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -rw-r--r-- 1 tailweb tailweb 208006 3月 4 2025 log4j-1.2-api-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 301872 3月 4 2025 log4j-api-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 1790452 3月 4 2025 log4j-core-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 24279 3月 4 2025 log4j-slf4j-impl-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 136314 9月 28 10:36 metrics-core-3.2.4.jar -rw-r--r-- 1 tailweb tailweb 4433 9月 28 10:36 netty-all-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 305139 9月 28 10:36 netty-buffer-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 345977 9月 28 10:36 netty-codec-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 66887 9月 28 10:36 netty-codec-dns-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 37776 9月 28 10:36 netty-codec-haproxy-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 480218 9月 28 10:36 netty-codec-http2-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 655092 9月 28 10:36 netty-codec-http-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 44691 9月 28 10:36 netty-codec-memcache-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 100903 9月 28 10:36 netty-codec-mqtt-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 45959 9月 28 10:36 netty-codec-redis-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 21291 9月 28 10:36 netty-codec-smtp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 120710 9月 28 10:36 netty-codec-socks-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 34545 9月 28 10:36 netty-codec-stomp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 19774 9月 28 10:36 netty-codec-xml-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 657795 9月 28 10:36 netty-common-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 545615 9月 28 10:36 netty-handler-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 25409 9月 28 10:36 netty-handler-proxy-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 26512 9月 28 10:36 netty-handler-ssl-ocsp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 37790 9月 28 10:36 netty-resolver-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 165684 9月 28 10:36 netty-resolver-dns-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 9091 9月 28 10:36 netty-resolver-dns-classes-macos-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 19205 9月 28 10:36 netty-resolver-dns-native-macos-4.1.89.Final-osx-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 19426 9月 28 10:36 netty-resolver-dns-native-macos-4.1.89.Final-osx-x86_64.jar -rw-r--r-- 1 tailweb tailweb 488388 9月 28 10:36 netty-transport-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 145035 9月 28 10:36 netty-transport-classes-epoll-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 108283 9月 28 10:36 netty-transport-classes-kqueue-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 39517 9月 28 10:36 netty-transport-native-epoll-4.1.89.Final-linux-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 37918 9月 28 10:36 netty-transport-native-epoll-4.1.89.Final-linux-x86_64.jar -rw-r--r-- 1 tailweb tailweb 25098 9月 28 10:36 netty-transport-native-kqueue-4.1.89.Final-osx-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 26133 9月 28 10:36 netty-transport-native-kqueue-4.1.89.Final-osx-x86_64.jar -rw-r--r-- 1 tailweb tailweb 43700 9月 28 10:36 netty-transport-native-unix-common-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 18190 9月 28 10:36 netty-transport-rxtx-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 50764 9月 28 10:36 netty-transport-sctp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 32133 9月 28 10:36 netty-transport-udt-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 444013 9月 28 10:36 nimbus-jose-jwt-9.8.1.jar -rw-r--r-- 1 tailweb tailweb 29555 9月 28 10:36 paranamer-2.3.jar -rw-r--r-- 1 tailweb tailweb 533455 9月 28 10:36 protobuf-java-2.5.0.jar -rw-r--r-- 1 tailweb tailweb 128414 9月 28 10:36 re2j-1.1.jar -rw-r--r-- 1 tailweb tailweb 332398 9月 28 10:36 reload4j-1.2.22.jar -rw-r--r-- 1 tailweb tailweb 41125 9月 28 10:36 slf4j-api-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 9824 9月 28 10:36 slf4j-reload4j-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 1969177 9月 28 10:36 snappy-java-1.1.8.2.jar -rw-r--r-- 1 tailweb tailweb 195909 9月 28 10:36 stax2-api-4.2.1.jar -rw-r--r-- 1 tailweb tailweb 18763 9月 28 10:36 token-provider-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 522679 9月 28 10:36 woodstox-core-5.4.0.jar -rw-r--r-- 1 tailweb tailweb 1254153 9月 28 10:36 zookeeper-3.6.3.jar -rw-r--r-- 1 tailweb tailweb 250399 9月 28 10:36 zookeeper-jute-3.6.3.jar [tailweb@ecs-gtcg-gtcg-app-k-ww173017 /home/flink/current/lib]$ll 总用量 304076 -rw-r--r-- 1 tailweb tailweb 3448 9月 28 10:37 animal-sniffer-annotations-1.17.jar -rw-r--r-- 1 tailweb tailweb 20437 9月 28 10:37 audience-annotations-0.5.0.jar -rw-r--r-- 1 tailweb tailweb 436303 9月 28 10:37 avro-1.7.7.jar -rw-r--r-- 1 tailweb tailweb 193322 9月 28 10:37 checker-qual-2.5.2.jar -rw-r--r-- 1 tailweb tailweb 246918 9月 28 10:37 commons-beanutils-1.9.4.jar -rw-r--r-- 1 tailweb tailweb 58284 9月 23 19:09 commons-cli-1.5.0.jar -rw-r--r-- 1 tailweb tailweb 353793 9月 28 10:37 commons-codec-1.15.jar -rw-r--r-- 1 tailweb tailweb 588337 9月 28 10:37 commons-collections-3.2.2.jar -rw-r--r-- 1 tailweb tailweb 1018316 9月 28 10:37 commons-compress-1.21.jar -rw-r--r-- 1 tailweb tailweb 632505 9月 28 10:37 commons-configuration2-2.8.0.jar -rw-r--r-- 1 tailweb tailweb 24239 9月 28 10:37 commons-daemon-1.0.13.jar -rw-r--r-- 1 tailweb tailweb 285424 9月 28 10:37 commons-io-2.8.0.jar -rw-r--r-- 1 tailweb tailweb 587402 9月 28 10:37 commons-lang3-3.12.0.jar -rw-r--r-- 1 tailweb tailweb 62050 9月 28 10:37 commons-logging-1.1.3.jar -rw-r--r-- 1 tailweb tailweb 1599627 9月 28 10:37 commons-math3-3.1.1.jar -rw-r--r-- 1 tailweb tailweb 316431 9月 28 10:37 commons-net-3.9.0.jar -rw-r--r-- 1 tailweb tailweb 238400 9月 28 10:37 commons-text-1.10.0.jar -rw-r--r-- 1 tailweb tailweb 98755 11月 26 10:38 connect-api-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 32082 11月 26 10:38 connect-json-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 93051 11月 26 10:38 connect-transforms-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 2983237 9月 28 10:37 curator-client-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 336384 9月 28 10:37 curator-framework-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 315569 9月 28 10:37 curator-recipes-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 307637 9月 28 10:37 dnsjava-2.1.7.jar -rw-r--r-- 1 tailweb tailweb 3727 9月 28 10:37 failureaccess-1.0.jar -rw-r--r-- 1 tailweb tailweb 198149 6月 13 01:50 flink-cep-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 559150 6月 13 01:52 flink-connector-files-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 102376 6月 13 01:53 flink-csv-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 125376107 6月 13 01:56 flink-dist-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 203669 6月 13 01:53 flink-json-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 21060372 6月 13 01:56 flink-scala_2.12-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 30335722 11月 24 12:02 flink-sql-cdc-connector-kes-v2-3.2-SNAPSHOT.jar -rw-r--r-- 1 tailweb tailweb 15622482 6月 13 01:56 flink-table-api-java-uber-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 38282838 6月 13 01:56 flink-table-planner-loader-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 3523628 6月 13 01:50 flink-table-runtime-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 249277 9月 28 10:37 gson-2.9.0.jar -rw-r--r-- 1 tailweb tailweb 2747878 9月 28 10:37 guava-27.0-jre.jar -rw-r--r-- 1 tailweb tailweb 25105 9月 28 10:37 hadoop-annotations-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 106144 9月 28 10:37 hadoop-auth-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 4602540 9月 28 10:37 hadoop-common-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 3524722 9月 28 10:37 hadoop-common-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 6304455 9月 28 10:37 hadoop-hdfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 6158328 9月 28 10:37 hadoop-hdfs-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 5533901 9月 28 10:37 hadoop-hdfs-client-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 129732 9月 28 10:37 hadoop-hdfs-client-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 251499 9月 28 10:37 hadoop-hdfs-httpfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 9588 9月 28 10:37 hadoop-hdfs-native-client-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 9588 9月 28 10:37 hadoop-hdfs-native-client-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 115640 9月 28 10:37 hadoop-hdfs-nfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 1155906 9月 28 10:37 hadoop-hdfs-rbf-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 471540 9月 28 10:37 hadoop-hdfs-rbf-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 96472 9月 28 10:37 hadoop-kms-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 170377 9月 28 10:37 hadoop-nfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 187845 9月 28 10:37 hadoop-registry-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 3362359 9月 28 10:37 hadoop-shaded-guava-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 1477052 9月 28 10:37 hadoop-shaded-protobuf_3_7-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 780321 9月 28 10:37 httpclient-4.5.13.jar -rw-r--r-- 1 tailweb tailweb 328593 9月 28 10:37 httpcore-4.4.13.jar -rw-r--r-- 1 tailweb tailweb 8782 9月 28 10:37 j2objc-annotations-1.1.jar -rw-r--r-- 1 tailweb tailweb 75705 9月 28 10:37 jackson-annotations-2.12.7.jar -rw-r--r-- 1 tailweb tailweb 365538 9月 28 10:37 jackson-core-2.12.7.jar -rw-r--r-- 1 tailweb tailweb 232248 9月 28 10:37 jackson-core-asl-1.9.13.jar -rw-r--r-- 1 tailweb tailweb 1512418 9月 28 10:37 jackson-databind-2.12.7.1.jar -rw-r--r-- 1 tailweb tailweb 780664 9月 28 10:37 jackson-mapper-asl-1.9.13.jar -rw-r--r-- 1 tailweb tailweb 44399 9月 28 10:37 jakarta.activation-api-1.2.1.jar -rw-r--r-- 1 tailweb tailweb 95806 9月 28 10:37 javax.servlet-api-3.1.0.jar -rw-r--r-- 1 tailweb tailweb 102244 9月 28 10:37 jaxb-api-2.2.11.jar -rw-r--r-- 1 tailweb tailweb 890168 9月 28 10:37 jaxb-impl-2.2.3-1.jar -rw-r--r-- 1 tailweb tailweb 4722 9月 28 10:37 jcip-annotations-1.0-1.jar -rw-r--r-- 1 tailweb tailweb 436731 9月 28 10:37 jersey-core-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 158695 9月 28 10:37 jersey-json-1.20.jar -rw-r--r-- 1 tailweb tailweb 705276 9月 28 10:37 jersey-server-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 128990 9月 28 10:37 jersey-servlet-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 90184 9月 28 10:37 jettison-1.5.4.jar -rw-r--r-- 1 tailweb tailweb 235225 9月 28 10:37 jetty-http-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 183020 9月 28 10:37 jetty-io-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 118512 9月 28 10:37 jetty-security-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 736865 9月 28 10:37 jetty-server-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 146077 9月 28 10:37 jetty-servlet-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 583590 9月 28 10:37 jetty-util-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 66653 9月 28 10:37 jetty-util-ajax-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 140321 9月 28 10:37 jetty-webapp-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 68302 9月 28 10:37 jetty-xml-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 282591 9月 28 10:37 jsch-0.1.55.jar -rw-r--r-- 1 tailweb tailweb 100636 9月 28 10:37 jsp-api-2.1.jar -rw-r--r-- 1 tailweb tailweb 19936 9月 28 10:37 jsr305-3.0.2.jar -rw-r--r-- 1 tailweb tailweb 46367 9月 28 10:37 jsr311-api-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 4519 9月 28 10:37 jul-to-slf4j-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 4614888 11月 26 10:39 kafka-clients-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 80980 9月 28 10:37 kerb-admin-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 113017 9月 28 10:37 kerb-client-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 65464 9月 28 10:37 kerb-common-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 226672 9月 28 10:37 kerb-core-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 116120 9月 28 10:37 kerb-crypto-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 20046 9月 28 10:37 kerb-identity-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 82756 9月 28 10:37 kerb-server-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 20409 9月 28 10:37 kerb-simplekdc-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 36708 9月 28 10:37 kerb-util-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 102174 9月 28 10:37 kerby-asn1-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 30674 9月 28 10:37 kerby-config-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 204650 9月 28 10:37 kerby-pkix-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 40554 9月 28 10:37 kerby-util-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 29134 9月 28 10:37 kerby-xdr-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 2199 9月 28 10:37 listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -rw-r--r-- 1 tailweb tailweb 208006 3月 4 2025 log4j-1.2-api-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 301872 3月 4 2025 log4j-api-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 1790452 3月 4 2025 log4j-core-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 24279 3月 4 2025 log4j-slf4j-impl-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 136314 9月 28 10:37 metrics-core-3.2.4.jar -rw-r--r-- 1 tailweb tailweb 4433 9月 28 10:37 netty-all-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 305139 9月 28 10:37 netty-buffer-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 345977 9月 28 10:37 netty-codec-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 66887 9月 28 10:37 netty-codec-dns-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 37776 9月 28 10:37 netty-codec-haproxy-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 480218 9月 28 10:37 netty-codec-http2-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 655092 9月 28 10:37 netty-codec-http-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 44691 9月 28 10:37 netty-codec-memcache-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 100903 9月 28 10:37 netty-codec-mqtt-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 45959 9月 28 10:37 netty-codec-redis-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 21291 9月 28 10:37 netty-codec-smtp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 120710 9月 28 10:37 netty-codec-socks-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 34545 9月 28 10:37 netty-codec-stomp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 19774 9月 28 10:37 netty-codec-xml-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 657795 9月 28 10:37 netty-common-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 545615 9月 28 10:37 netty-handler-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 25409 9月 28 10:37 netty-handler-proxy-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 26512 9月 28 10:37 netty-handler-ssl-ocsp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 37790 9月 28 10:37 netty-resolver-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 165684 9月 28 10:37 netty-resolver-dns-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 9091 9月 28 10:37 netty-resolver-dns-classes-macos-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 19205 9月 28 10:37 netty-resolver-dns-native-macos-4.1.89.Final-osx-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 19426 9月 28 10:37 netty-resolver-dns-native-macos-4.1.89.Final-osx-x86_64.jar -rw-r--r-- 1 tailweb tailweb 488388 9月 28 10:37 netty-transport-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 145035 9月 28 10:37 netty-transport-classes-epoll-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 108283 9月 28 10:37 netty-transport-classes-kqueue-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 39517 9月 28 10:37 netty-transport-native-epoll-4.1.89.Final-linux-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 37918 9月 28 10:37 netty-transport-native-epoll-4.1.89.Final-linux-x86_64.jar -rw-r--r-- 1 tailweb tailweb 25098 9月 28 10:37 netty-transport-native-kqueue-4.1.89.Final-osx-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 26133 9月 28 10:37 netty-transport-native-kqueue-4.1.89.Final-osx-x86_64.jar -rw-r--r-- 1 tailweb tailweb 43700 9月 28 10:37 netty-transport-native-unix-common-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 18190 9月 28 10:37 netty-transport-rxtx-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 50764 9月 28 10:37 netty-transport-sctp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 32133 9月 28 10:37 netty-transport-udt-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 444013 9月 28 10:37 nimbus-jose-jwt-9.8.1.jar -rw-r--r-- 1 tailweb tailweb 29555 9月 28 10:37 paranamer-2.3.jar -rw-r--r-- 1 tailweb tailweb 533455 9月 28 10:37 protobuf-java-2.5.0.jar -rw-r--r-- 1 tailweb tailweb 128414 9月 28 10:37 re2j-1.1.jar -rw-r--r-- 1 tailweb tailweb 332398 9月 28 10:37 reload4j-1.2.22.jar -rw-r--r-- 1 tailweb tailweb 41125 9月 28 10:37 slf4j-api-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 9824 9月 28 10:37 slf4j-reload4j-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 1969177 9月 28 10:37 snappy-java-1.1.8.2.jar -rw-r--r-- 1 tailweb tailweb 195909 9月 28 10:37 stax2-api-4.2.1.jar -rw-r--r-- 1 tailweb tailweb 18763 9月 28 10:37 token-provider-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 522679 9月 28 10:37 woodstox-core-5.4.0.jar -rw-r--r-- 1 tailweb tailweb 1254153 9月 28 10:37 zookeeper-3.6.3.jar -rw-r--r-- 1 tailweb tailweb 250399 9月 28 10:37 zookeeper-jute-3.6.3.jar [tailweb@ecs-gtcg-gtcg-app-k-ww173021 /home/flink/current/lib]$ll 总用量 304076 -rw-r--r-- 1 tailweb tailweb 3448 9月 28 10:38 animal-sniffer-annotations-1.17.jar -rw-r--r-- 1 tailweb tailweb 20437 9月 28 10:38 audience-annotations-0.5.0.jar -rw-r--r-- 1 tailweb tailweb 436303 9月 28 10:38 avro-1.7.7.jar -rw-r--r-- 1 tailweb tailweb 193322 9月 28 10:38 checker-qual-2.5.2.jar -rw-r--r-- 1 tailweb tailweb 246918 9月 28 10:38 commons-beanutils-1.9.4.jar -rw-r--r-- 1 tailweb tailweb 58284 9月 23 19:09 commons-cli-1.5.0.jar -rw-r--r-- 1 tailweb tailweb 353793 9月 28 10:38 commons-codec-1.15.jar -rw-r--r-- 1 tailweb tailweb 588337 9月 28 10:38 commons-collections-3.2.2.jar -rw-r--r-- 1 tailweb tailweb 1018316 9月 28 10:38 commons-compress-1.21.jar -rw-r--r-- 1 tailweb tailweb 632505 9月 28 10:38 commons-configuration2-2.8.0.jar -rw-r--r-- 1 tailweb tailweb 24239 9月 28 10:38 commons-daemon-1.0.13.jar -rw-r--r-- 1 tailweb tailweb 285424 9月 28 10:38 commons-io-2.8.0.jar -rw-r--r-- 1 tailweb tailweb 587402 9月 28 10:38 commons-lang3-3.12.0.jar -rw-r--r-- 1 tailweb tailweb 62050 9月 28 10:38 commons-logging-1.1.3.jar -rw-r--r-- 1 tailweb tailweb 1599627 9月 28 10:38 commons-math3-3.1.1.jar -rw-r--r-- 1 tailweb tailweb 316431 9月 28 10:38 commons-net-3.9.0.jar -rw-r--r-- 1 tailweb tailweb 238400 9月 28 10:38 commons-text-1.10.0.jar -rw-r--r-- 1 tailweb tailweb 98755 11月 26 10:38 connect-api-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 32082 11月 26 10:38 connect-json-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 93051 11月 26 10:38 connect-transforms-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 2983237 9月 28 10:38 curator-client-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 336384 9月 28 10:38 curator-framework-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 315569 9月 28 10:38 curator-recipes-5.2.0.jar -rw-r--r-- 1 tailweb tailweb 307637 9月 28 10:38 dnsjava-2.1.7.jar -rw-r--r-- 1 tailweb tailweb 3727 9月 28 10:38 failureaccess-1.0.jar -rw-r--r-- 1 tailweb tailweb 198149 6月 13 01:50 flink-cep-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 559150 6月 13 01:52 flink-connector-files-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 102376 6月 13 01:53 flink-csv-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 125376107 6月 13 01:56 flink-dist-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 203669 6月 13 01:53 flink-json-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 21060372 6月 13 01:56 flink-scala_2.12-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 30335722 11月 24 12:02 flink-sql-cdc-connector-kes-v2-3.2-SNAPSHOT.jar -rw-r--r-- 1 tailweb tailweb 15622482 6月 13 01:56 flink-table-api-java-uber-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 38282838 6月 13 01:56 flink-table-planner-loader-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 3523628 6月 13 01:50 flink-table-runtime-1.19.3.jar -rw-r--r-- 1 tailweb tailweb 249277 9月 28 10:38 gson-2.9.0.jar -rw-r--r-- 1 tailweb tailweb 2747878 9月 28 10:38 guava-27.0-jre.jar -rw-r--r-- 1 tailweb tailweb 25105 9月 28 10:38 hadoop-annotations-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 106144 9月 28 10:38 hadoop-auth-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 4602540 9月 28 10:37 hadoop-common-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 3524722 9月 28 10:37 hadoop-common-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 6304455 9月 28 10:37 hadoop-hdfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 6158328 9月 28 10:37 hadoop-hdfs-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 5533901 9月 28 10:37 hadoop-hdfs-client-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 129732 9月 28 10:37 hadoop-hdfs-client-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 251499 9月 28 10:37 hadoop-hdfs-httpfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 9588 9月 28 10:37 hadoop-hdfs-native-client-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 9588 9月 28 10:37 hadoop-hdfs-native-client-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 115640 9月 28 10:37 hadoop-hdfs-nfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 1155906 9月 28 10:37 hadoop-hdfs-rbf-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 471540 9月 28 10:37 hadoop-hdfs-rbf-3.3.6-tests.jar -rw-r--r-- 1 tailweb tailweb 96472 9月 28 10:37 hadoop-kms-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 170377 9月 28 10:37 hadoop-nfs-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 187845 9月 28 10:37 hadoop-registry-3.3.6.jar -rw-r--r-- 1 tailweb tailweb 3362359 9月 28 10:38 hadoop-shaded-guava-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 1477052 9月 28 10:38 hadoop-shaded-protobuf_3_7-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 780321 9月 28 10:38 httpclient-4.5.13.jar -rw-r--r-- 1 tailweb tailweb 328593 9月 28 10:38 httpcore-4.4.13.jar -rw-r--r-- 1 tailweb tailweb 8782 9月 28 10:38 j2objc-annotations-1.1.jar -rw-r--r-- 1 tailweb tailweb 75705 9月 28 10:38 jackson-annotations-2.12.7.jar -rw-r--r-- 1 tailweb tailweb 365538 9月 28 10:38 jackson-core-2.12.7.jar -rw-r--r-- 1 tailweb tailweb 232248 9月 28 10:38 jackson-core-asl-1.9.13.jar -rw-r--r-- 1 tailweb tailweb 1512418 9月 28 10:38 jackson-databind-2.12.7.1.jar -rw-r--r-- 1 tailweb tailweb 780664 9月 28 10:38 jackson-mapper-asl-1.9.13.jar -rw-r--r-- 1 tailweb tailweb 44399 9月 28 10:38 jakarta.activation-api-1.2.1.jar -rw-r--r-- 1 tailweb tailweb 95806 9月 28 10:38 javax.servlet-api-3.1.0.jar -rw-r--r-- 1 tailweb tailweb 102244 9月 28 10:38 jaxb-api-2.2.11.jar -rw-r--r-- 1 tailweb tailweb 890168 9月 28 10:38 jaxb-impl-2.2.3-1.jar -rw-r--r-- 1 tailweb tailweb 4722 9月 28 10:38 jcip-annotations-1.0-1.jar -rw-r--r-- 1 tailweb tailweb 436731 9月 28 10:38 jersey-core-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 158695 9月 28 10:38 jersey-json-1.20.jar -rw-r--r-- 1 tailweb tailweb 705276 9月 28 10:38 jersey-server-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 128990 9月 28 10:38 jersey-servlet-1.19.4.jar -rw-r--r-- 1 tailweb tailweb 90184 9月 28 10:38 jettison-1.5.4.jar -rw-r--r-- 1 tailweb tailweb 235225 9月 28 10:38 jetty-http-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 183020 9月 28 10:38 jetty-io-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 118512 9月 28 10:38 jetty-security-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 736865 9月 28 10:38 jetty-server-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 146077 9月 28 10:38 jetty-servlet-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 583590 9月 28 10:38 jetty-util-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 66653 9月 28 10:38 jetty-util-ajax-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 140321 9月 28 10:38 jetty-webapp-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 68302 9月 28 10:38 jetty-xml-9.4.51.v20230217.jar -rw-r--r-- 1 tailweb tailweb 282591 9月 28 10:38 jsch-0.1.55.jar -rw-r--r-- 1 tailweb tailweb 100636 9月 28 10:38 jsp-api-2.1.jar -rw-r--r-- 1 tailweb tailweb 19936 9月 28 10:38 jsr305-3.0.2.jar -rw-r--r-- 1 tailweb tailweb 46367 9月 28 10:38 jsr311-api-1.1.1.jar -rw-r--r-- 1 tailweb tailweb 4519 9月 28 10:38 jul-to-slf4j-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 4614888 11月 26 10:39 kafka-clients-2.8.1.jar -rw-r--r-- 1 tailweb tailweb 80980 9月 28 10:38 kerb-admin-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 113017 9月 28 10:38 kerb-client-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 65464 9月 28 10:38 kerb-common-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 226672 9月 28 10:38 kerb-core-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 116120 9月 28 10:38 kerb-crypto-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 20046 9月 28 10:38 kerb-identity-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 82756 9月 28 10:38 kerb-server-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 20409 9月 28 10:38 kerb-simplekdc-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 36708 9月 28 10:38 kerb-util-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 102174 9月 28 10:38 kerby-asn1-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 30674 9月 28 10:38 kerby-config-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 204650 9月 28 10:38 kerby-pkix-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 40554 9月 28 10:38 kerby-util-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 29134 9月 28 10:38 kerby-xdr-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 2199 9月 28 10:38 listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar -rw-r--r-- 1 tailweb tailweb 208006 3月 4 2025 log4j-1.2-api-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 301872 3月 4 2025 log4j-api-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 1790452 3月 4 2025 log4j-core-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 24279 3月 4 2025 log4j-slf4j-impl-2.17.1.jar -rw-r--r-- 1 tailweb tailweb 136314 9月 28 10:38 metrics-core-3.2.4.jar -rw-r--r-- 1 tailweb tailweb 4433 9月 28 10:38 netty-all-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 305139 9月 28 10:38 netty-buffer-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 345977 9月 28 10:38 netty-codec-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 66887 9月 28 10:38 netty-codec-dns-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 37776 9月 28 10:38 netty-codec-haproxy-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 480218 9月 28 10:38 netty-codec-http2-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 655092 9月 28 10:38 netty-codec-http-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 44691 9月 28 10:38 netty-codec-memcache-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 100903 9月 28 10:38 netty-codec-mqtt-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 45959 9月 28 10:38 netty-codec-redis-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 21291 9月 28 10:38 netty-codec-smtp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 120710 9月 28 10:38 netty-codec-socks-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 34545 9月 28 10:38 netty-codec-stomp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 19774 9月 28 10:38 netty-codec-xml-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 657795 9月 28 10:38 netty-common-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 545615 9月 28 10:38 netty-handler-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 25409 9月 28 10:38 netty-handler-proxy-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 26512 9月 28 10:38 netty-handler-ssl-ocsp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 37790 9月 28 10:38 netty-resolver-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 165684 9月 28 10:38 netty-resolver-dns-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 9091 9月 28 10:38 netty-resolver-dns-classes-macos-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 19205 9月 28 10:38 netty-resolver-dns-native-macos-4.1.89.Final-osx-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 19426 9月 28 10:38 netty-resolver-dns-native-macos-4.1.89.Final-osx-x86_64.jar -rw-r--r-- 1 tailweb tailweb 488388 9月 28 10:38 netty-transport-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 145035 9月 28 10:38 netty-transport-classes-epoll-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 108283 9月 28 10:38 netty-transport-classes-kqueue-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 39517 9月 28 10:38 netty-transport-native-epoll-4.1.89.Final-linux-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 37918 9月 28 10:38 netty-transport-native-epoll-4.1.89.Final-linux-x86_64.jar -rw-r--r-- 1 tailweb tailweb 25098 9月 28 10:38 netty-transport-native-kqueue-4.1.89.Final-osx-aarch_64.jar -rw-r--r-- 1 tailweb tailweb 26133 9月 28 10:38 netty-transport-native-kqueue-4.1.89.Final-osx-x86_64.jar -rw-r--r-- 1 tailweb tailweb 43700 9月 28 10:38 netty-transport-native-unix-common-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 18190 9月 28 10:38 netty-transport-rxtx-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 50764 9月 28 10:38 netty-transport-sctp-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 32133 9月 28 10:38 netty-transport-udt-4.1.89.Final.jar -rw-r--r-- 1 tailweb tailweb 444013 9月 28 10:38 nimbus-jose-jwt-9.8.1.jar -rw-r--r-- 1 tailweb tailweb 29555 9月 28 10:38 paranamer-2.3.jar -rw-r--r-- 1 tailweb tailweb 533455 9月 28 10:38 protobuf-java-2.5.0.jar -rw-r--r-- 1 tailweb tailweb 128414 9月 28 10:38 re2j-1.1.jar -rw-r--r-- 1 tailweb tailweb 332398 9月 28 10:38 reload4j-1.2.22.jar -rw-r--r-- 1 tailweb tailweb 41125 9月 28 10:38 slf4j-api-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 9824 9月 28 10:38 slf4j-reload4j-1.7.36.jar -rw-r--r-- 1 tailweb tailweb 1969177 9月 28 10:38 snappy-java-1.1.8.2.jar -rw-r--r-- 1 tailweb tailweb 195909 9月 28 10:38 stax2-api-4.2.1.jar -rw-r--r-- 1 tailweb tailweb 18763 9月 28 10:38 token-provider-1.0.1.jar -rw-r--r-- 1 tailweb tailweb 522679 9月 28 10:38 woodstox-core-5.4.0.jar -rw-r--r-- 1 tailweb tailweb 1254153 9月 28 10:38 zookeeper-3.6.3.jar -rw-r--r-- 1 tailweb tailweb 250399 9月 28 10:38 zookeeper-jute-3.6.3.jar 这分别是10,17,21机器的flink lib 下的jar包,解决日志输出冲突,flink版本是1.19.3,结合你知道的,解决此问题!!!
最新发布
12-02
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.18</version> <relativePath/> </parent> <groupId>com.example</groupId> <artifactId>Hive</artifactId> <version>0.0.1-SNAPSHOT</version> <name>Hive</name> <description>Hive Connection Demo</description> <properties> <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <!--<spring-version>5.1.0.RELEASE</spring-version>--> <!--<hibernate.version>5.3.6.Final</hibernate.version>--> <poi-version>3.13</poi-version> <junit.version>4.12</junit.version> <mysql.connection.version>8.0.33</mysql.connection.version> <activemq.version>5.9.1</activemq.version> <jackson-version>2.9.6</jackson-version> <!--spring cloud version--> <spring-cloud.version>2021.0.1</spring-cloud.version> <nacos.version>2021.0.1.0</nacos.version> <swagger.version>2.9.2</swagger.version> <fastjson.version>1.2.83</fastjson.version> <pinyin4j.version>2.5.1</pinyin4j.version> <commons-pool2.version>2.11.1</commons-pool2.version> </properties> <repositories> <repository> <id>cloudera</id> <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url> </repository> </repositories> <dependencyManagement> <dependencies> <!--按需继承,model所需依赖在此处定义groupId、artifactId、version,子model只需要指定groupId、artifactId即可,非公共性依赖不建议直接使用depandencys预定义依赖,否则子model会自动继承depandencys中所预定义依赖--> <!--spring-cloud--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> <!--nacos--> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> <version>${nacos.version}</version> </dependency> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> <version>${nacos.version}</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-loadbalancer</artifactId> <version>3.1.4</version> </dependency> <!--swagger2--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>${swagger.version}</version> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> <version>1.5.22</version> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-models</artifactId> <version>1.5.22</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>${swagger.version}</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.connection.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> <version>${commons-pool2.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <exclusions> <exclusion> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.2.6</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>3.0.0-cdh6.3.2</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>3.0.0-cdh6.3.2</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-jdbc</artifactId> <version>2.1.1-cdh6.3.2</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>org.apache.tomcat</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-service</artifactId> <version>2.1.1-cdh6.3.2</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-common</artifactId> <version>2.1.1-cdh6.3.2</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-hadoop</artifactId> <version>2.5.0.RELEASE</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>org.apache.hadoop</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>org.apache.tomcat</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.83</version> </dependency> <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j --> <!-- <dependency>--> <!-- <groupId>com.belerweb</groupId>--> <!-- <artifactId>pinyin4j</artifactId>--> <!-- <version>2.5.1</version>--> <!-- </dependency>--> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.13</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.3</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> </dependency> <!--简化Domain代码--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> <version>0.9.3</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> </plugins> </build> </project>D:\Java\jdk-1.8\bin\java.exe -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:D:\Maven\IntelliJ IDEA 2022.1.3\lib\idea_rt.jar=63464:D:\Maven\IntelliJ IDEA 2022.1.3\bin" -Dfile.encoding=UTF-8 -classpath D:\Java\jdk-1.8\jre\lib\charsets.jar;D:\Java\jdk-1.8\jre\lib\deploy.jar;D:\Java\jdk-1.8\jre\lib\ext\access-bridge-64.jar;D:\Java\jdk-1.8\jre\lib\ext\cldrdata.jar;D:\Java\jdk-1.8\jre\lib\ext\dnsns.jar;D:\Java\jdk-1.8\jre\lib\ext\jaccess.jar;D:\Java\jdk-1.8\jre\lib\ext\jfxrt.jar;D:\Java\jdk-1.8\jre\lib\ext\localedata.jar;D:\Java\jdk-1.8\jre\lib\ext\nashorn.jar;D:\Java\jdk-1.8\jre\lib\ext\sunec.jar;D:\Java\jdk-1.8\jre\lib\ext\sunjce_provider.jar;D:\Java\jdk-1.8\jre\lib\ext\sunmscapi.jar;D:\Java\jdk-1.8\jre\lib\ext\sunpkcs11.jar;D:\Java\jdk-1.8\jre\lib\ext\zipfs.jar;D:\Java\jdk-1.8\jre\lib\javaws.jar;D:\Java\jdk-1.8\jre\lib\jce.jar;D:\Java\jdk-1.8\jre\lib\jfr.jar;D:\Java\jdk-1.8\jre\lib\jfxswt.jar;D:\Java\jdk-1.8\jre\lib\jsse.jar;D:\Java\jdk-1.8\jre\lib\management-agent.jar;D:\Java\jdk-1.8\jre\lib\plugin.jar;D:\Java\jdk-1.8\jre\lib\resources.jar;D:\Java\jdk-1.8\jre\lib\rt.jar;D:\Maven\ideaProject\Hive\ifs-hive-application\target\classes;D:\Maven\ideaProject\Hive\ifs-hive\target\classes;D:\Maven\repository\org\springframework\boot\spring-boot-starter-mail\2.7.18\spring-boot-starter-mail-2.7.18.jar;D:\Maven\repository\org\springframework\spring-context-support\5.3.31\spring-context-support-5.3.31.jar;D:\Maven\repository\com\sun\mail\jakarta.mail\1.6.7\jakarta.mail-1.6.7.jar;D:\Maven\repository\com\sun\activation\jakarta.activation\1.2.2\jakarta.activation-1.2.2.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-amqp\2.7.18\spring-boot-starter-amqp-2.7.18.jar;D:\Maven\repository\org\springframework\spring-messaging\5.3.31\spring-messaging-5.3.31.jar;D:\Maven\repository\org\springframework\amqp\spring-rabbit\2.4.17\spring-rabbit-2.4.17.jar;D:\Maven\repository\org\springframework\amqp\spring-amqp\2.4.17\spring-amqp-2.4.17.jar;D:\Maven\repository\org\springframework\retry\spring-retry\1.3.4\spring-retry-1.3.4.jar;D:\Maven\repository\com\rabbitmq\amqp-client\5.14.3\amqp-client-5.14.3.jar;D:\Maven\repository\org\springframework\spring-tx\5.3.31\spring-tx-5.3.31.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-data-jpa\2.7.18\spring-boot-starter-data-jpa-2.7.18.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-aop\2.7.18\spring-boot-starter-aop-2.7.18.jar;D:\Maven\repository\org\aspectj\aspectjweaver\1.9.7\aspectjweaver-1.9.7.jar;D:\Maven\repository\jakarta\transaction\jakarta.transaction-api\1.3.3\jakarta.transaction-api-1.3.3.jar;D:\Maven\repository\jakarta\persistence\jakarta.persistence-api\2.2.3\jakarta.persistence-api-2.2.3.jar;D:\Maven\repository\org\hibernate\hibernate-core\5.6.15.Final\hibernate-core-5.6.15.Final.jar;D:\Maven\repository\org\jboss\logging\jboss-logging\3.4.3.Final\jboss-logging-3.4.3.Final.jar;D:\Maven\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar;D:\Maven\repository\org\jboss\jandex\2.4.2.Final\jandex-2.4.2.Final.jar;D:\Maven\repository\org\hibernate\common\hibernate-commons-annotations\5.1.2.Final\hibernate-commons-annotations-5.1.2.Final.jar;D:\Maven\repository\org\glassfish\jaxb\jaxb-runtime\2.3.9\jaxb-runtime-2.3.9.jar;D:\Maven\repository\org\glassfish\jaxb\txw2\2.3.9\txw2-2.3.9.jar;D:\Maven\repository\com\sun\istack\istack-commons-runtime\3.0.12\istack-commons-runtime-3.0.12.jar;D:\Maven\repository\org\springframework\data\spring-data-jpa\2.7.18\spring-data-jpa-2.7.18.jar;D:\Maven\repository\org\springframework\data\spring-data-commons\2.7.18\spring-data-commons-2.7.18.jar;D:\Maven\repository\org\springframework\spring-orm\5.3.31\spring-orm-5.3.31.jar;D:\Maven\repository\org\springframework\spring-aspects\5.3.31\spring-aspects-5.3.31.jar;D:\Maven\repository\com\alibaba\druid-spring-boot-starter\1.2.6\druid-spring-boot-starter-1.2.6.jar;D:\Maven\repository\com\alibaba\druid\1.2.6\druid-1.2.6.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-data-redis\2.7.18\spring-boot-starter-data-redis-2.7.18.jar;D:\Maven\repository\org\springframework\data\spring-data-redis\2.7.18\spring-data-redis-2.7.18.jar;D:\Maven\repository\org\springframework\data\spring-data-keyvalue\2.7.18\spring-data-keyvalue-2.7.18.jar;D:\Maven\repository\org\springframework\spring-oxm\5.3.31\spring-oxm-5.3.31.jar;D:\Maven\repository\io\lettuce\lettuce-core\6.1.10.RELEASE\lettuce-core-6.1.10.RELEASE.jar;D:\Maven\repository\io\netty\netty-common\4.1.101.Final\netty-common-4.1.101.Final.jar;D:\Maven\repository\io\netty\netty-handler\4.1.101.Final\netty-handler-4.1.101.Final.jar;D:\Maven\repository\io\netty\netty-resolver\4.1.101.Final\netty-resolver-4.1.101.Final.jar;D:\Maven\repository\io\netty\netty-buffer\4.1.101.Final\netty-buffer-4.1.101.Final.jar;D:\Maven\repository\io\netty\netty-transport-native-unix-common\4.1.101.Final\netty-transport-native-unix-common-4.1.101.Final.jar;D:\Maven\repository\io\netty\netty-codec\4.1.101.Final\netty-codec-4.1.101.Final.jar;D:\Maven\repository\io\netty\netty-transport\4.1.101.Final\netty-transport-4.1.101.Final.jar;D:\Maven\repository\io\projectreactor\reactor-core\3.4.34\reactor-core-3.4.34.jar;D:\Maven\repository\org\reactivestreams\reactive-streams\1.0.4\reactive-streams-1.0.4.jar;D:\Maven\repository\com\kingee\sso\kingee-sso\1\kingee-sso-1.jar;D:\Maven\repository\com\bip\bip-api\1.0\bip-api-1.0.jar;D:\Maven\repository\com\kingdell\hr\kingdell-hr\1\kingdell-hr-1.jar;D:\Maven\repository\cn\afterturn\easypoi-annotation\4.1.0\easypoi-annotation-4.1.0.jar;D:\Maven\repository\cn\afterturn\easypoi-base\4.1.0\easypoi-base-4.1.0.jar;D:\Maven\repository\ognl\ognl\3.2.6\ognl-3.2.6.jar;D:\Maven\repository\org\javassist\javassist\3.20.0-GA\javassist-3.20.0-GA.jar;D:\Maven\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar;D:\Maven\repository\com\google\code\gson\gson\2.9.1\gson-2.9.1.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-jdbc\2.7.18\spring-boot-starter-jdbc-2.7.18.jar;D:\Maven\repository\com\zaxxer\HikariCP\4.0.3\HikariCP-4.0.3.jar;D:\Maven\repository\org\springframework\spring-jdbc\5.3.31\spring-jdbc-5.3.31.jar;D:\Maven\repository\com\jcraft\jsch\0.1.55\jsch-0.1.55.jar;D:\Maven\repository\com\hy\base\hy-common\9.0-SNAPSHOT\hy-common-9.0-20250903.082902-9.jar;D:\Maven\repository\io\springfox\springfox-swagger2\2.9.2\springfox-swagger2-2.9.2.jar;D:\Maven\repository\io\swagger\swagger-annotations\1.5.22\swagger-annotations-1.5.22.jar;D:\Maven\repository\io\swagger\swagger-models\1.5.22\swagger-models-1.5.22.jar;D:\Maven\repository\com\fasterxml\jackson\core\jackson-annotations\2.13.5\jackson-annotations-2.13.5.jar;D:\Maven\repository\io\springfox\springfox-spi\2.9.2\springfox-spi-2.9.2.jar;D:\Maven\repository\io\springfox\springfox-core\2.9.2\springfox-core-2.9.2.jar;D:\Maven\repository\io\springfox\springfox-schema\2.9.2\springfox-schema-2.9.2.jar;D:\Maven\repository\io\springfox\springfox-swagger-common\2.9.2\springfox-swagger-common-2.9.2.jar;D:\Maven\repository\io\springfox\springfox-spring-web\2.9.2\springfox-spring-web-2.9.2.jar;D:\Maven\repository\com\fasterxml\classmate\1.5.1\classmate-1.5.1.jar;D:\Maven\repository\org\springframework\plugin\spring-plugin-core\1.2.0.RELEASE\spring-plugin-core-1.2.0.RELEASE.jar;D:\Maven\repository\org\springframework\plugin\spring-plugin-metadata\1.2.0.RELEASE\spring-plugin-metadata-1.2.0.RELEASE.jar;D:\Maven\repository\org\mapstruct\mapstruct\1.2.0.Final\mapstruct-1.2.0.Final.jar;D:\Maven\repository\com\mysql\mysql-connector-j\8.0.33\mysql-connector-j-8.0.33.jar;D:\Maven\repository\org\springframework\boot\spring-boot-actuator\2.7.18\spring-boot-actuator-2.7.18.jar;D:\Maven\repository\org\springframework\boot\spring-boot-actuator-autoconfigure\2.7.18\spring-boot-actuator-autoconfigure-2.7.18.jar;D:\Maven\repository\com\fasterxml\jackson\core\jackson-databind\2.13.5\jackson-databind-2.13.5.jar;D:\Maven\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.13.5\jackson-datatype-jsr310-2.13.5.jar;D:\Maven\repository\org\apache\poi\poi\4.0.0\poi-4.0.0.jar;D:\Maven\repository\commons-codec\commons-codec\1.15\commons-codec-1.15.jar;D:\Maven\repository\org\apache\commons\commons-collections4\4.4\commons-collections4-4.4.jar;D:\Maven\repository\org\apache\poi\poi-scratchpad\4.0.0\poi-scratchpad-4.0.0.jar;D:\Maven\repository\com\monitorjbl\xlsx-streamer\2.1.0\xlsx-streamer-2.1.0.jar;D:\Maven\repository\org\apache\poi\poi-ooxml-schemas\4.0.0\poi-ooxml-schemas-4.0.0.jar;D:\Maven\repository\org\apache\xmlbeans\xmlbeans\3.0.1\xmlbeans-3.0.1.jar;D:\Maven\repository\com\rackspace\apache\xerces2-xsd11\2.11.1\xerces2-xsd11-2.11.1.jar;D:\Maven\repository\com\rackspace\eclipse\webtools\sourceediting\org.eclipse.wst.xml.xpath2.processor\2.1.100\org.eclipse.wst.xml.xpath2.processor-2.1.100.jar;D:\Maven\repository\edu\princeton\cup\java-cup\10k\java-cup-10k.jar;D:\Maven\repository\com\ibm\icu\icu4j\4.6\icu4j-4.6.jar;D:\Maven\repository\xml-resolver\xml-resolver\1.2\xml-resolver-1.2.jar;D:\Maven\repository\xml-apis\xml-apis\1.4.01\xml-apis-1.4.01.jar;D:\Maven\repository\org\slf4j\slf4j-api\1.7.36\slf4j-api-1.7.36.jar;D:\Maven\repository\org\apache\poi\poi-ooxml\4.0.0\poi-ooxml-4.0.0.jar;D:\Maven\repository\org\apache\commons\commons-compress\1.18\commons-compress-1.18.jar;D:\Maven\repository\com\github\virtuald\curvesapi\1.04\curvesapi-1.04.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-web\2.7.18\spring-boot-starter-web-2.7.18.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter\2.7.18\spring-boot-starter-2.7.18.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-logging\2.7.18\spring-boot-starter-logging-2.7.18.jar;D:\Maven\repository\ch\qos\logback\logback-classic\1.2.12\logback-classic-1.2.12.jar;D:\Maven\repository\ch\qos\logback\logback-core\1.2.12\logback-core-1.2.12.jar;D:\Maven\repository\org\apache\logging\log4j\log4j-to-slf4j\2.17.2\log4j-to-slf4j-2.17.2.jar;D:\Maven\repository\org\apache\logging\log4j\log4j-api\2.17.2\log4j-api-2.17.2.jar;D:\Maven\repository\org\slf4j\jul-to-slf4j\1.7.36\jul-to-slf4j-1.7.36.jar;D:\Maven\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;D:\Maven\repository\org\yaml\snakeyaml\1.30\snakeyaml-1.30.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-json\2.7.18\spring-boot-starter-json-2.7.18.jar;D:\Maven\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.13.5\jackson-datatype-jdk8-2.13.5.jar;D:\Maven\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.13.5\jackson-module-parameter-names-2.13.5.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-tomcat\2.7.18\spring-boot-starter-tomcat-2.7.18.jar;D:\Maven\repository\org\apache\tomcat\embed\tomcat-embed-core\9.0.83\tomcat-embed-core-9.0.83.jar;D:\Maven\repository\org\apache\tomcat\embed\tomcat-embed-el\9.0.83\tomcat-embed-el-9.0.83.jar;D:\Maven\repository\org\apache\tomcat\embed\tomcat-embed-websocket\9.0.83\tomcat-embed-websocket-9.0.83.jar;D:\Maven\repository\org\springframework\spring-web\5.3.31\spring-web-5.3.31.jar;D:\Maven\repository\org\springframework\spring-beans\5.3.31\spring-beans-5.3.31.jar;D:\Maven\repository\org\springframework\spring-webmvc\5.3.31\spring-webmvc-5.3.31.jar;D:\Maven\repository\org\springframework\spring-aop\5.3.31\spring-aop-5.3.31.jar;D:\Maven\repository\org\springframework\spring-context\5.3.31\spring-context-5.3.31.jar;D:\Maven\repository\org\springframework\spring-expression\5.3.31\spring-expression-5.3.31.jar;D:\Maven\repository\org\springframework\cloud\spring-cloud-starter-bootstrap\3.1.1\spring-cloud-starter-bootstrap-3.1.1.jar;D:\Maven\repository\org\springframework\cloud\spring-cloud-starter\3.1.1\spring-cloud-starter-3.1.1.jar;D:\Maven\repository\org\springframework\security\spring-security-rsa\1.0.10.RELEASE\spring-security-rsa-1.0.10.RELEASE.jar;D:\Maven\repository\org\bouncycastle\bcpkix-jdk15on\1.68\bcpkix-jdk15on-1.68.jar;D:\Maven\repository\org\bouncycastle\bcprov-jdk15on\1.68\bcprov-jdk15on-1.68.jar;D:\Maven\repository\org\springframework\boot\spring-boot-starter-actuator\2.7.18\spring-boot-starter-actuator-2.7.18.jar;D:\Maven\repository\io\micrometer\micrometer-core\1.9.17\micrometer-core-1.9.17.jar;D:\Maven\repository\org\hdrhistogram\HdrHistogram\2.1.12\HdrHistogram-2.1.12.jar;D:\Maven\repository\org\latencyutils\LatencyUtils\2.0.3\LatencyUtils-2.0.3.jar;D:\Maven\repository\com\google\guava\guava\20.0\guava-20.0.jar;D:\Maven\repository\com\alibaba\cloud\spring-cloud-starter-alibaba-nacos-discovery\2021.0.1.0\spring-cloud-starter-alibaba-nacos-discovery-2021.0.1.0.jar;D:\Maven\repository\com\alibaba\cloud\spring-cloud-alibaba-commons\2021.0.1.0\spring-cloud-alibaba-commons-2021.0.1.0.jar;D:\Maven\repository\com\alibaba\nacos\nacos-client\1.4.2\nacos-client-1.4.2.jar;D:\Maven\repository\com\alibaba\nacos\nacos-common\1.4.2\nacos-common-1.4.2.jar;D:\Maven\repository\commons-io\commons-io\2.7\commons-io-2.7.jar;D:\Maven\repository\org\apache\httpcomponents\httpasyncclient\4.1.5\httpasyncclient-4.1.5.jar;D:\Maven\repository\org\apache\httpcomponents\httpcore-nio\4.4.16\httpcore-nio-4.4.16.jar;D:\Maven\repository\com\alibaba\nacos\nacos-api\1.4.2\nacos-api-1.4.2.jar;D:\Maven\repository\com\fasterxml\jackson\core\jackson-core\2.13.5\jackson-core-2.13.5.jar;D:\Maven\repository\io\prometheus\simpleclient\0.15.0\simpleclient-0.15.0.jar;D:\Maven\repository\io\prometheus\simpleclient_tracer_otel\0.15.0\simpleclient_tracer_otel-0.15.0.jar;D:\Maven\repository\io\prometheus\simpleclient_tracer_common\0.15.0\simpleclient_tracer_common-0.15.0.jar;D:\Maven\repository\io\prometheus\simpleclient_tracer_otel_agent\0.15.0\simpleclient_tracer_otel_agent-0.15.0.jar;D:\Maven\repository\com\alibaba\spring\spring-context-support\1.0.11\spring-context-support-1.0.11.jar;D:\Maven\repository\org\springframework\cloud\spring-cloud-commons\3.1.1\spring-cloud-commons-3.1.1.jar;D:\Maven\repository\org\springframework\security\spring-security-crypto\5.7.11\spring-security-crypto-5.7.11.jar;D:\Maven\repository\org\springframework\cloud\spring-cloud-context\3.1.1\spring-cloud-context-3.1.1.jar;D:\Maven\repository\com\alibaba\cloud\spring-cloud-starter-alibaba-nacos-config\2021.0.1.0\spring-cloud-starter-alibaba-nacos-config-2021.0.1.0.jar;D:\Maven\repository\org\apache\commons\commons-pool2\2.11.1\commons-pool2-2.11.1.jar;D:\Maven\repository\org\apache\hive\hive-jdbc\2.1.1-cdh6.3.2\hive-jdbc-2.1.1-cdh6.3.2.jar;D:\Maven\repository\org\apache\hive\hive-service-rpc\2.1.1-cdh6.3.2\hive-service-rpc-2.1.1-cdh6.3.2.jar;D:\Maven\repository\org\springframework\boot\spring-boot-devtools\2.7.18\spring-boot-devtools-2.7.18.jar;D:\Maven\repository\org\springframework\boot\spring-boot\2.7.18\spring-boot-2.7.18.jar;D:\Maven\repository\org\springframework\boot\spring-boot-autoconfigure\2.7.18\spring-boot-autoconfigure-2.7.18.jar;D:\Maven\repository\jakarta\xml\bind\jakarta.xml.bind-api\2.3.3\jakarta.xml.bind-api-2.3.3.jar;D:\Maven\repository\jakarta\activation\jakarta.activation-api\1.2.2\jakarta.activation-api-1.2.2.jar;D:\Maven\repository\net\bytebuddy\byte-buddy\1.12.23\byte-buddy-1.12.23.jar;D:\Maven\repository\org\springframework\spring-core\5.3.31\spring-core-5.3.31.jar;D:\Maven\repository\org\springframework\spring-jcl\5.3.31\spring-jcl-5.3.31.jar;D:\Maven\repository\com\alibaba\fastjson\1.2.83\fastjson-1.2.83.jar;D:\Maven\repository\com\belerweb\pinyin4j\2.5.1\pinyin4j-2.5.1.jar;D:\Maven\repository\org\apache\httpcomponents\httpclient\4.5.13\httpclient-4.5.13.jar;D:\Maven\repository\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar;D:\Maven\repository\commons-beanutils\commons-beanutils\1.9.3\commons-beanutils-1.9.3.jar;D:\Maven\repository\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;D:\Maven\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar;D:\Maven\repository\org\apache\commons\commons-lang3\3.9\commons-lang3-3.9.jar;D:\Maven\repository\org\projectlombok\lombok\1.18.30\lombok-1.18.30.jar;D:\Maven\repository\org\springframework\cloud\spring-cloud-starter-openfeign\3.1.1\spring-cloud-starter-openfeign-3.1.1.jar;D:\Maven\repository\org\springframework\cloud\spring-cloud-openfeign-core\3.1.1\spring-cloud-openfeign-core-3.1.1.jar;D:\Maven\repository\io\github\openfeign\form\feign-form-spring\3.8.0\feign-form-spring-3.8.0.jar;D:\Maven\repository\io\github\openfeign\form\feign-form\3.8.0\feign-form-3.8.0.jar;D:\Maven\repository\commons-fileupload\commons-fileupload\1.4\commons-fileupload-1.4.jar;D:\Maven\repository\io\github\openfeign\feign-core\11.8\feign-core-11.8.jar;D:\Maven\repository\io\github\openfeign\feign-slf4j\11.8\feign-slf4j-11.8.jar com.hy.ifs.hive.HiveApplication 09:38:02.755 [Thread-1] DEBUG org.springframework.boot.devtools.restart.classloader.RestartClassLoader - Created RestartClassLoader org.springframework.boot.devtools.restart.classloader.RestartClassLoader@6db81c79 2025-09-17 09:38:03.591 INFO 24764 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v2.7.18) 2025-09-17 09:38:07.328 WARN 24764 --- [ restartedMain] c.a.c.n.c.NacosPropertySourceBuilder : Ignore the empty nacos configuration and get it based on dataId[null.properties] & group[DEFAULT_GROUP] 2025-09-17 09:38:07.329 INFO 24764 --- [ restartedMain] b.c.PropertySourceBootstrapConfiguration : Located property source: [BootstrapPropertySource {name='bootstrapProperties-null.properties,DEFAULT_GROUP'}] 2025-09-17 09:38:07.332 INFO 24764 --- [ restartedMain] com.hy.ifs.hive.HiveApplication : No active profile set, falling back to 1 default profile: "default" 2025-09-17 09:38:08.006 INFO 24764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode 2025-09-17 09:38:08.006 INFO 24764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. 2025-09-17 09:38:08.061 INFO 24764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 47 ms. Found 3 JPA repository interfaces. 2025-09-17 09:38:08.069 INFO 24764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Multiple Spring Data modules found, entering strict repository configuration mode 2025-09-17 09:38:08.070 INFO 24764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data Redis repositories in DEFAULT mode. 2025-09-17 09:38:08.080 INFO 24764 --- [ restartedMain] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.hy.ifs.hive.repositorites.CustomerRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository 2025-09-17 09:38:08.080 INFO 24764 --- [ restartedMain] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.hy.ifs.hive.repositorites.DirectionCodeRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository 2025-09-17 09:38:08.081 INFO 24764 --- [ restartedMain] .RepositoryConfigurationExtensionSupport : Spring Data Redis - Could not safely identify store assignment for repository candidate interface com.hy.ifs.hive.repositorites.DirectionRepository; If you want this repository to be a Redis repository, consider annotating your entities with one of these annotations: org.springframework.data.redis.core.RedisHash (preferred), or consider extending one of the following types with your repository: org.springframework.data.keyvalue.repository.KeyValueRepository 2025-09-17 09:38:08.081 INFO 24764 --- [ restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. 2025-09-17 09:38:08.225 INFO 24764 --- [ restartedMain] o.s.cloud.context.scope.GenericScope : BeanFactory id=3c4e86c4-1dd9-3a09-904c-7500e21d04b4 2025-09-17 09:38:08.714 INFO 24764 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) 2025-09-17 09:38:08.715 INFO 24764 --- [ restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded Apache Tomcat Native library [1.3.1] using APR version [1.7.4]. 2025-09-17 09:38:08.715 INFO 24764 --- [ restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true], UDS [true]. 2025-09-17 09:38:08.715 INFO 24764 --- [ restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true] 2025-09-17 09:38:08.719 INFO 24764 --- [ restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 3.0.14 4 Jun 2024] 2025-09-17 09:38:08.724 INFO 24764 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2025-09-17 09:38:08.724 INFO 24764 --- [ restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.83] 2025-09-17 09:38:08.872 INFO 24764 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2025-09-17 09:38:08.873 INFO 24764 --- [ restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1533 ms 2025-09-17 09:38:09.093 INFO 24764 --- [ restartedMain] org.apache.hive.jdbc.Utils : Supplied authorities: cdh50:10000 2025-09-17 09:38:09.094 INFO 24764 --- [ restartedMain] org.apache.hive.jdbc.Utils : Resolved authority: cdh50:10000 2025-09-17 09:38:09.095 ERROR 24764 --- [ restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} init error java.lang.NoClassDefFoundError: org/apache/thrift/TEnum at java.lang.ClassLoader.defineClass1(Native Method) ~[na:1.8.0_431] at java.lang.ClassLoader.defineClass(ClassLoader.java:756) ~[na:1.8.0_431] at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[na:1.8.0_431] at java.net.URLClassLoader.defineClass(URLClassLoader.java:473) ~[na:1.8.0_431] at java.net.URLClassLoader.access$100(URLClassLoader.java:74) ~[na:1.8.0_431] at java.net.URLClassLoader$1.run(URLClassLoader.java:369) ~[na:1.8.0_431] at java.net.URLClassLoader$1.run(URLClassLoader.java:363) ~[na:1.8.0_431] at java.security.AccessController.doPrivileged(Native Method) ~[na:1.8.0_431] at java.net.URLClassLoader.findClass(URLClassLoader.java:362) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[na:1.8.0_431] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:359) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[na:1.8.0_431] at org.apache.hive.jdbc.HiveConnection.<init>(HiveConnection.java:154) ~[hive-jdbc-2.1.1-cdh6.3.2.jar:2.1.1-cdh6.3.2] at org.apache.hive.jdbc.HiveDriver.connect(HiveDriver.java:107) ~[hive-jdbc-2.1.1-cdh6.3.2.jar:2.1.1-cdh6.3.2] at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1657) ~[druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1723) ~[druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:919) [druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.getConnection(DruidDataSource.java:1393) [druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.getConnection(DruidDataSource.java:1389) [druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.getConnection(DruidDataSource.java:100) [druid-1.2.6.jar:1.2.6] at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) [spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) [spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) [spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:332) [spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.boot.jdbc.EmbeddedDatabaseConnection.isEmbedded(EmbeddedDatabaseConnection.java:164) [spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateDefaultDdlAutoProvider.getDefaultDdlAuto(HibernateDefaultDdlAutoProvider.java:42) [spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration.lambda$getVendorProperties$1(HibernateJpaConfiguration.java:130) [spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateSettings.getDdlAuto(HibernateSettings.java:41) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.determineDdlAuto(HibernateProperties.java:143) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.getAdditionalProperties(HibernateProperties.java:103) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.determineHibernateProperties(HibernateProperties.java:95) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration.getVendorProperties(HibernateJpaConfiguration.java:131) [spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.entityManagerFactory(JpaBaseConfiguration.java:132) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_431] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_431] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_431] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_431] at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:633) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1168) ~[spring-context-5.3.31.jar:5.3.31] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:919) ~[spring-context-5.3.31.jar:5.3.31] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:591) ~[spring-context-5.3.31.jar:5.3.31] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:732) ~[spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:409) ~[spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.run(SpringApplication.java:308) ~[spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1300) ~[spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1289) ~[spring-boot-2.7.18.jar:2.7.18] at com.hy.ifs.hive.HiveApplication.main(HiveApplication.java:11) ~[classes/:na] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_431] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_431] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_431] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_431] at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:50) ~[spring-boot-devtools-2.7.18.jar:2.7.18] Caused by: java.lang.ClassNotFoundException: org.apache.thrift.TEnum at java.net.URLClassLoader.findClass(URLClassLoader.java:387) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[na:1.8.0_431] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:359) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[na:1.8.0_431] ... 63 common frames omitted 2025-09-17 09:38:09.096 WARN 24764 --- [ restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean]: Factory method 'entityManagerFactory' threw exception; nested exception is java.lang.NoClassDefFoundError: org/apache/thrift/TEnum 2025-09-17 09:38:09.097 INFO 24764 --- [ restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closing ... 2025-09-17 09:38:09.097 INFO 24764 --- [ restartedMain] com.alibaba.druid.pool.DruidDataSource : {dataSource-1} closed 2025-09-17 09:38:09.098 INFO 24764 --- [ restartedMain] o.apache.catalina.core.StandardService : Stopping service [Tomcat] 2025-09-17 09:38:09.112 INFO 24764 --- [ restartedMain] ConditionEvaluationReportLoggingListener : Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2025-09-17 09:38:09.137 ERROR 24764 --- [ restartedMain] o.s.boot.SpringApplication : Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean]: Factory method 'entityManagerFactory' threw exception; nested exception is java.lang.NoClassDefFoundError: org/apache/thrift/TEnum at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:653) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:633) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1352) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1195) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1168) ~[spring-context-5.3.31.jar:5.3.31] at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:919) ~[spring-context-5.3.31.jar:5.3.31] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:591) ~[spring-context-5.3.31.jar:5.3.31] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:147) ~[spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:732) [spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:409) [spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.run(SpringApplication.java:308) [spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1300) [spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.SpringApplication.run(SpringApplication.java:1289) [spring-boot-2.7.18.jar:2.7.18] at com.hy.ifs.hive.HiveApplication.main(HiveApplication.java:11) [classes/:na] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_431] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_431] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_431] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_431] at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:50) [spring-boot-devtools-2.7.18.jar:2.7.18] Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean]: Factory method 'entityManagerFactory' threw exception; nested exception is java.lang.NoClassDefFoundError: org/apache/thrift/TEnum at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) ~[spring-beans-5.3.31.jar:5.3.31] at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) ~[spring-beans-5.3.31.jar:5.3.31] ... 24 common frames omitted Caused by: java.lang.NoClassDefFoundError: org/apache/thrift/TEnum at java.lang.ClassLoader.defineClass1(Native Method) ~[na:1.8.0_431] at java.lang.ClassLoader.defineClass(ClassLoader.java:756) ~[na:1.8.0_431] at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) ~[na:1.8.0_431] at java.net.URLClassLoader.defineClass(URLClassLoader.java:473) ~[na:1.8.0_431] at java.net.URLClassLoader.access$100(URLClassLoader.java:74) ~[na:1.8.0_431] at java.net.URLClassLoader$1.run(URLClassLoader.java:369) ~[na:1.8.0_431] at java.net.URLClassLoader$1.run(URLClassLoader.java:363) ~[na:1.8.0_431] at java.security.AccessController.doPrivileged(Native Method) ~[na:1.8.0_431] at java.net.URLClassLoader.findClass(URLClassLoader.java:362) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[na:1.8.0_431] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:359) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[na:1.8.0_431] at org.apache.hive.jdbc.HiveConnection.<init>(HiveConnection.java:154) ~[hive-jdbc-2.1.1-cdh6.3.2.jar:2.1.1-cdh6.3.2] at org.apache.hive.jdbc.HiveDriver.connect(HiveDriver.java:107) ~[hive-jdbc-2.1.1-cdh6.3.2.jar:2.1.1-cdh6.3.2] at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1657) ~[druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1723) ~[druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:919) ~[druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.getConnection(DruidDataSource.java:1393) ~[druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.getConnection(DruidDataSource.java:1389) ~[druid-1.2.6.jar:1.2.6] at com.alibaba.druid.pool.DruidDataSource.getConnection(DruidDataSource.java:100) ~[druid-1.2.6.jar:1.2.6] at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) ~[spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) ~[spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) ~[spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:332) ~[spring-jdbc-5.3.31.jar:5.3.31] at org.springframework.boot.jdbc.EmbeddedDatabaseConnection.isEmbedded(EmbeddedDatabaseConnection.java:164) ~[spring-boot-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateDefaultDdlAutoProvider.getDefaultDdlAuto(HibernateDefaultDdlAutoProvider.java:42) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration.lambda$getVendorProperties$1(HibernateJpaConfiguration.java:130) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateSettings.getDdlAuto(HibernateSettings.java:41) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.determineDdlAuto(HibernateProperties.java:143) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.getAdditionalProperties(HibernateProperties.java:103) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties.determineHibernateProperties(HibernateProperties.java:95) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration.getVendorProperties(HibernateJpaConfiguration.java:131) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration.entityManagerFactory(JpaBaseConfiguration.java:132) ~[spring-boot-autoconfigure-2.7.18.jar:2.7.18] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_431] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_431] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_431] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_431] at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.3.31.jar:5.3.31] ... 25 common frames omitted Caused by: java.lang.ClassNotFoundException: org.apache.thrift.TEnum at java.net.URLClassLoader.findClass(URLClassLoader.java:387) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:418) ~[na:1.8.0_431] at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:359) ~[na:1.8.0_431] at java.lang.ClassLoader.loadClass(ClassLoader.java:351) ~[na:1.8.0_431] ... 63 common frames omitted 2025-09-17 09:38:09.141 WARN 24764 --- [ Thread-7] c.a.n.common.http.HttpClientBeanHolder : [HttpClientBeanHolder] Start destroying common HttpClient 进程已结束,退出代码0
09-18
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.15</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.hzxy</groupId> <artifactId>AssistCase_GA</artifactId> <version>0.0.2-SNAPSHOT</version> <name>PublicSecurityAssistCase</name> <!--<packaging>war</packaging>--> <description>Demo project for Spring Boot</description> <!-- <properties>--> <!-- <java.version>1.8</java.version>--> <!-- <hutool.version>5.4.4</hutool.version>--> <!-- </properties>--> <properties> <java.version>17</java.version> <hutool.version>5.4.4</hutool.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-spring-boot-starter-jaxws</artifactId> <version>3.2.5</version> <exclusions> <exclusion> <artifactId>cxf-core</artifactId> <groupId>org.apache.cxf</groupId> </exclusion> <exclusion> <artifactId>spring-boot-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-web</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>com.liferay</groupId> <artifactId>org.apache.commons.configuration</artifactId> <version>1.10.LIFERAY-PATCHED-2</version> </dependency> <!-- axis 1.4 jar start --> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>commons-discovery</groupId> <artifactId>commons-discovery</artifactId> <version>0.2</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis-jaxrpc</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis-saaj</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>wsdl4j</groupId> <artifactId>wsdl4j</artifactId> <version>1.4</version> </dependency> <!-- axis 1.4 jar end --> <!--lib--> <!--<dependency>--> <!--<groupId>org.springframework.boot</groupId>--> <!--<artifactId>spring-boot-starter-tomcat</artifactId>--> <!--<scope>provided</scope>--> <!--</dependency>--> <!--<dependency>--> <!--<groupId>javax.servlet</groupId>--> <!--<artifactId>javax.servlet-api</artifactId>--> <!--<version>3.0.1</version>--> <!--<scope>provided</scope>--> <!--</dependency>--> <dependency> <groupId>com.hzxy.framework</groupId> <artifactId>common</artifactId> <version>0.0.54-SNAPSHOT</version> <exclusions> <exclusion> <artifactId>springfox-swagger-ui</artifactId> <groupId>io.springfox</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-web</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>lombok</artifactId> <groupId>org.projectlombok</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.hzxy.framework</groupId> <artifactId>office_nmga</artifactId> <version>0.0.17-SNAPSHOT</version> <exclusions> <exclusion> <artifactId>springfox-swagger-ui</artifactId> <groupId>io.springfox</groupId> </exclusion> <exclusion> <artifactId>spring-boot-starter-web</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>lombok</artifactId> <groupId>org.projectlombok</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.hzxy.framework</groupId> <artifactId>multipleStorageTools_GA</artifactId> <version>0.0.5-SNAPSHOT</version> </dependency> <dependency> <groupId>io.dgraph</groupId> <artifactId>dgraph4j</artifactId> <version>20.03.3</version> <exclusions> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>netty-handler</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-common</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>grpc-protobuf</artifactId> <groupId>io.grpc</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.org</groupId> <artifactId>dom4j</artifactId> <version>2.1.3</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resources/lib/dom4j-2.1.3.jar</systemPath> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20170516</version> </dependency> <dependency> <groupId>xom</groupId> <artifactId>xom</artifactId> <version>1.2.5</version> <exclusions> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> <exclusion> <artifactId>xalan</artifactId> <groupId>xalan</groupId> </exclusion> </exclusions> </dependency> <!-- <dependency> <groupId>com.hzxy</groupId> <artifactId>instantmsg</artifactId> <scope>system</scope> <version>0.0.1-SNAPSHOT</version> <systemPath>${project.basedir}/src/main/resources/lib/instantmsg-0.0.1-SNAPSHOT.jar</systemPath> </dependency> --> <!--Swagger2--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> <exclusions> <exclusion> <groupId>io.swagger</groupId> <artifactId>swagger-models</artifactId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-models</artifactId> <version>1.5.21</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.10.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.5.15</version> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.1</version> <exclusions> <exclusion> <artifactId>mybatis</artifactId> <groupId>org.mybatis</groupId> </exclusion> <exclusion> <artifactId>spring-boot-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.24</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.1.21</version> <exclusions> <exclusion> <artifactId>spring-boot-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.shardingsphere</groupId> <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId> <version>5.1.1</version> <exclusions> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>netty-handler</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-common</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> </exclusions> </dependency> <!-- 使用druid连接池需要加dbcp依赖 --> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-dbcp</artifactId> <version>10.0.16</version> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</version> <exclusions> <exclusion> <artifactId>mybatis-plus</artifactId> <groupId>com.baomidou</groupId> </exclusion> <exclusion> <artifactId>spring-boot-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <!-- mybatis plus 代码生成器依赖 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <version>3.4.1</version> </dependency> <!-- 代码生成器模板 --> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>2.5.15</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> <exclusion> <artifactId>json-path</artifactId> <groupId>com.jayway.jsonpath</groupId> </exclusion> <exclusion> <artifactId>spring-boot-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-boot</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.1.6</version> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>2.2.0</version> </dependency> <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib --> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifier> <exclusions> <exclusion> <artifactId>commons-beanutils</artifactId> <groupId>commons-beanutils</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.54</version> </dependency> <!--<dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.17</version> </dependency>--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>4.1.2</version> <exclusions> <exclusion> <artifactId>commons-compress</artifactId> <groupId>org.apache.commons</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>2.2.7</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.9.2</version> </dependency> <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dependency> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>7.17.23</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-elasticsearch</artifactId> <version>4.3.4</version> <exclusions> <exclusion> <artifactId>netty-handler</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>netty-common</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>elasticsearch</artifactId> <groupId>org.elasticsearch</groupId> </exclusion> <exclusion> <artifactId>elasticsearch-core</artifactId> <groupId>org.elasticsearch</groupId> </exclusion> <exclusion> <artifactId>joda-time</artifactId> <groupId>joda-time</groupId> </exclusion> </exclusions> </dependency> <!-- rabbit mq --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> <version>2.5.15</version> <exclusions> <exclusion> <artifactId>spring-amqp</artifactId> <groupId>org.springframework.amqp</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>${hutool.version}</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.11</version> </dependency> <dependency> <groupId>com.dm</groupId> <artifactId>Dm8JdbcDriver</artifactId> <version>1.7</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resources/lib/DmJdbcDriver18.jar</systemPath> </dependency> <dependency> <groupId>org.apache.pdfbox</groupId> <artifactId>pdfbox</artifactId> <version>2.0.24</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jexl</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.icepdf.os</groupId> <artifactId>icepdf-core</artifactId> <version>6.2.2</version> <exclusions> <exclusion> <groupId>javax.media</groupId> <artifactId>jai_core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itext-pdfa</artifactId> <version>5.5.13</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itext-asian</artifactId> <version>5.2.0</version> </dependency> <!-- pdf样式 --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itext-asian</artifactId> <version>5.2.0</version> </dependency> <!--pdf相关操作--> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.10</version> </dependency> <dependency> <groupId>com.drewnoakes</groupId> <artifactId>metadata-extractor</artifactId> <version>2.14.0</version> </dependency> <!-- <dependency>--> <!-- <groupId>org.springframework</groupId>--> <!-- <artifactId>spring-test</artifactId>--> <!-- <version>RELEASE</version>--> <!-- </dependency>--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifactId> <version>2.5.15</version> <exclusions> <exclusion> <groupId>org.elasticsearch.client</groupId> <artifactId>transport</artifactId> </exclusion> <exclusion> <artifactId>spring-data-elasticsearch</artifactId> <groupId>org.springframework.data</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>x-pack-transport</artifactId> <version>6.8.16</version> </dependency> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>7.17.23</version> </dependency> <dependency> <groupId>uk.com.robust-it</groupId> <artifactId>cloning</artifactId> <version>1.9.12</version> </dependency> <dependency> <groupId>com.aspose.words</groupId> <artifactId>aspose</artifactId> <version>15.8.0.0</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resources/lib/aspose-words-15.8.0-jdk16.jar</systemPath> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.5.15</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>2.5.15</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>2.5.15</version> <exclusions> <exclusion> <artifactId>spring-boot</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> </exclusions> </dependency> <!-- <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>5.3.29</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.3.29</version> <exclusions> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-messaging</artifactId> <version>5.3.29</version> <exclusions> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>5.3.29</version> <exclusions> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>6.1.13</version> <exclusions> <exclusion> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-expression</artifactId> <groupId>org.springframework</groupId> </exclusion> <exclusion> <artifactId>spring-web</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>5.3.39</version> <exclusions> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>3.5.3.1</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> <version>1.53.0</version> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <version>2.5.0</version> <exclusions> <exclusion> <artifactId>spring-boot-autoconfigure</artifactId> <groupId>org.springframework.boot</groupId> </exclusion> <exclusion> <artifactId>spring-webmvc</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.0-android</version> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.4</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.26.0</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.6</version> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.12.2</version> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.7.3</version> </dependency> <dependency> <groupId>org.springframework.amqp</groupId> <artifactId>spring-amqp</artifactId> <version>2.2.20.RELEASE</version> <exclusions> <exclusion> <artifactId>spring-core</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-core</artifactId> <version>3.5.8</version> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>2.9.0</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>4.1.116.Final</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>4.1.100.Final</version> <exclusions> <exclusion> <artifactId>netty-common</artifactId> <groupId>io.netty</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-bom</artifactId> <version>2.13.5</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <repositories> <!-- add the elasticsearch repo --> <!-- 必须加上 这个仓库,不然x-pack-transport6.8.6在其他仓库中没有--> <repository> <id>elasticsearch-releases</id> <url>https://artifacts.elastic.co/maven</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <distributionManagement> <repository> <id>nexus-releases</id> <name>Local Nexus Repository</name> <url>http://192.168.3.102:8082/repository/maven-releases/</url> </repository> <snapshotRepository> <id>nexus-snapshots</id> <name>Local Nexus Repository</name> <url>http://192.168.3.102:8082/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> <build> <plugins> <!--如果是打jar包,则需在build的plugins中添加如下配置--> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.5.15</version> <configuration> <!--值为true是指打包时包含scope为system的第方Jar包--> <includeSystemScope>true</includeSystemScope> </configuration> </plugin> </plugins> <!--<plugins>--> <!--<plugin>--> <!--<groupId>org.springframework.boot</groupId>--> <!--<artifactId>spring-boot-maven-plugin</artifactId>--> <!--</plugin>--> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-compiler-plugin</artifactId>--> <!--<version>${maven-compiler-plugin.version}</version>--> <!--<configuration>--> <!--<source>1.8</source>--> <!--<target>1.8</target>--> <!--<skip>true</skip>--> <!--<encoding>UTF-8</encoding>--> <!--<compilerArguments>--> <!--<extdirs>${project.basedir}/src/main/resources/lib</extdirs>--> <!--<!–extdirs>lib</extdirs>–>--> <!--</compilerArguments>--> <!--</configuration>--> <!--</plugin>--> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-war-plugin</artifactId>--> <!--<version>3.1.0</version>--> <!--<configuration>--> <!--<webResources>--> <!--<resource>--> <!--<directory>src/main/resources/lib/</directory>--> <!--<targetPath>WEB-INF/lib/</targetPath>--> <!--<includes>--> <!--<include>**/*.jar</include>--> <!--</includes>--> <!--</resource>--> <!--</webResources>--> <!--<failOnMissingWebXml>false</failOnMissingWebXml>--> <!--</configuration>--> <!--</plugin>--> <!--</plugins>--> </build> </project> 上述为我项目的pom 启动报错为org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'rabbitTemplate' defined in class path resource [org/springframework/boot/autoconfigure/amqp/RabbitAutoConfiguration$RabbitTemplateConfiguration.class]: Post-processing of merged bean definition failed; nested exception is java.lang.IllegalStateException: Failed to introspect Class [org.springframework.amqp.rabbit.core.RabbitTemplate] from ClassLoader [jdk.internal.loader.ClassLoaders$AppClassLoader@63947c6b] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:597) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:955) at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:920) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:780) at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:453) at org.springframework.boot.SpringApplication.run(SpringApplication.java:343) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1370) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1359) at com.hzxy.PublicSecurityAssistCase.PublicSecurityAssistCaseApplication.main(PublicSecurityAssistCaseApplication.java:18) Caused by: java.lang.IllegalStateException: Failed to introspect Class [org.springframework.amqp.rabbit.core.RabbitTemplate] from ClassLoader [jdk.internal.loader.ClassLoaders$AppClassLoader@63947c6b] at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:485) at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:321) at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.buildLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:232) at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.findLifecycleMetadata(InitDestroyAnnotationBeanPostProcessor.java:210) at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(InitDestroyAnnotationBeanPostProcessor.java:149) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessMergedBeanDefinition(CommonAnnotationBeanPostProcessor.java:305) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyMergedBeanDefinitionPostProcessors(AbstractAutowireCapableBeanFactory.java:1116) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594) ... 15 common frames omitted Caused by: java.lang.NoClassDefFoundError: org/springframework/amqp/core/ReturnedMessage at java.base/java.lang.Class.getDeclaredMethods0(Native Method) at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402) at java.base/java.lang.Class.getDeclaredMethods(Class.java:2504) at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:467) ... 22 common frames omitted Caused by: java.lang.ClassNotFoundException: org.springframework.amqp.core.ReturnedMessage at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) ... 26 common frames omitted Disconnected from the target VM, address: '127.0.0.1:54593', transport: 'socket' Process finished with exit code 1
07-10
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值