Class MySQL8DateTimeSqlTypeFilter

java.lang.Object
javax.management.NotificationBroadcasterSupport
com.alibaba.druid.filter.FilterAdapter
com.alibaba.druid.filter.mysql8datetime.MySQL8DateTimeSqlTypeFilter
All Implemented Interfaces:
Filter, Wrapper, NotificationBroadcaster, NotificationEmitter

public class MySQL8DateTimeSqlTypeFilter extends FilterAdapter
针对mysql jdbc 8.0.23及以上版本,如果调用方没有使用orm框架,而是直接调用ResultSet的getObject方法,则针对DATETIME类型的字段,得到的对象从TimeStamp类型变成了LocalDateTime类型,导致调用方出现类型转换异常 通过Filter控制将对象类型转换成原来的类型
Author:
lizongbo
See Also: