使用基于 resultType 的隐式 TypeHandler 在 MyBatis 中进行选择
我正在尝试在MyBatis中选择一个时间戳并将其作为LocalDateTime(从joda时间)返回。
如果我尝试将结果作为 返回,我的配置工作正常。我证明了我的类型处理程序工作正常:如果我在 MyBatis 映射器文件中使用具有 as only 字段和 resultMap 的包装类,我会得到正确的结果。java.sql.Timestamp
LocalDateTime
但是,当我尝试为此选择指定 as 时,我总是得到 ,就好像类型处理程序被忽略一样。org.joda.time.LocalDateTime
resultType
null
我的理解是,MyBatis在我拥有的情况下使用默认类型Handler。因此,我希望它使用我在会议时配置的类型处理程序之一。resultType="java.sql.Timestamp"
resultType="org.joda.time.LocalDateTime"
我错过了什么吗?有没有办法利用我的typeHandler,或者我被迫制作一个包装器类和resultMap?这是我的回退解决方案,但如果可能的话,我想避免它。
任何帮助赞赏。谢谢。
mybatis-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeHandlers>
<typeHandler javaType="org.joda.time.LocalDate" jdbcType="DATE" handler="...LocalDateTypeHandler"/>
<typeHandler javaType="org.joda.time.LocalDateTime" jdbcType="TIMESTAMP" handler="...LocalDateTimeTypeHandler"/>
</typeHandlers>
</configuration>
NotifMailDao.java
import org.joda.time.LocalDateTime;
public interface NotifMailDao {
LocalDateTime getLastNotifTime(String userId);
}
NotifMailDao.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="lu.bgl.notif.mail.dao.NotifMailDao">
<select id="getLastNotifTime" resultType="org.joda.time.LocalDateTime">
SELECT current_timestamp
AS last_time
FROM DUAL
</select>
</mapper>