linghengqian commented on issue #30318:
URL: 
https://github.com/apache/shardingsphere/issues/30318#issuecomment-1968268853

   - Fixed in #28805.
   - For earlier versions of ShardingSpehre JDBC, you always need to use 
SnakeYAML 1.33.
   ```xml
           <dependency>
               <groupId>org.apache.shardingsphere</groupId>
               <artifactId>shardingsphere-jdbc-core</artifactId>
               <version>5.4.1</version>
           </dependency>
           <dependency>
               <groupId>com.sun.xml.bind</groupId>
               <artifactId>jaxb-impl</artifactId>
               <version>2.3.9</version>
           </dependency>
           <dependency>
               <groupId>com.sun.xml.bind</groupId>
               <artifactId>jaxb-core</artifactId>
               <version>2.3.0.1</version>
           </dependency>
           <dependency>
               <groupId>org.glassfish.jaxb</groupId>
               <artifactId>jaxb-runtime</artifactId>
               <version>2.3.9</version>
               <scope>runtime</scope>
           </dependency>
           <dependency>
               <groupId>org.yaml</groupId>
               <artifactId>snakeyaml</artifactId>
               <version>1.3.3</version>
           </dependency>
   ```
   - For ShardingSphere JDBC 5.4.2-SNAPSHOT/5.5.0 of the master branch, only 
the following is required. Use of the JAXB API has been removed.
   ```xml
   <dependency>
           <groupId>org.apache.shardingsphere</groupId>
           <artifactId>shardingsphere-jdbc</artifactId>
           <version>5.4.2-SNAPSHOT</version>
   </dependency>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to