-
Notifications
You must be signed in to change notification settings - Fork 608
Closed
Labels
Description
My project refeenced okhttp3, version 4.7.2. Keep reporting errors when using clickhouse-jdbc, "java.lang.NoSuchFieldError: Companion" 。During the inspection, the io.rpc.jar package of clickhouse was found and the okio code was packaged, which led to version compatibility problems.
Solution method,exclude grpc and io.grpc package.
<dependency>
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
<version>0.4.0</version>
<classifier>http</classifier>
<exclusions>
<exclusion>
<groupId>com.clickhouse</groupId>
<artifactId>io.grpc</artifactId>
</exclusion>
<exclusion>
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-grpc-client</artifactId>
</exclusion>
</exclusions>
</dependency>