1、pom里面依赖
mybatis-plus-boot-starter 3.5.3,
ojdbc6,
springboot 2.2.2.RELEASE
在使用到oracle的字段涉及到Date, 报错
Error attempting to get column 'xxx' from result set. Cause: java.sql.SQLException: error
百度很多方法有的需要重写保存和更新方法,写注解,Date转String,试了很多不好使,最后升级oracle依赖解决。
<!-- 集成Oracle --> <dependency><groupId>com.oracle.database.jdbc</groupId><artifactId>ojdbc8</artifactId><version>21.5.0.0</version> </dependency> <!-- 集成Oracle字符集 --> <dependency><groupId>com.oracle.database.nls</groupId><artifactId>orai18n</artifactId><version>21.5.0.0</version> </dependency>