mybatis日期转字符串如何实现

avatar
作者
猴君
阅读量:0

在MyBatis中,可以使用TypeHandler来实现日期类型转换为字符串类型的功能。以下是一个简单的DateToStringTypeHandler示例:

import org.apache.ibatis.type.JdbcType; import org.apache.ibatis.type.TypeHandler;  import java.sql.CallableStatement; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.text.SimpleDateFormat; import java.util.Date;  public class DateToStringTypeHandler implements TypeHandler<String> {      private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");      @Override     public void setParameter(PreparedStatement ps, int i, String parameter, JdbcType jdbcType) throws SQLException {         ps.setString(i, parameter);     }      @Override     public String getResult(ResultSet rs, String columnName) throws SQLException {         Date date = rs.getDate(columnName);         return dateFormat.format(date);     }      @Override     public String getResult(ResultSet rs, int columnIndex) throws SQLException {         Date date = rs.getDate(columnIndex);         return dateFormat.format(date);     }      @Override     public String getResult(CallableStatement cs, int columnIndex) throws SQLException {         Date date = cs.getDate(columnIndex);         return dateFormat.format(date);     } } 

然后在MyBatis配置文件中注册这个TypeHandler:

<typeHandlers>     <typeHandler handler="com.example.DateToStringTypeHandler"/> </typeHandlers> 

在需要进行日期转换的地方,直接使用String类型即可,MyBatis会自动调用对应的TypeHandler来进行转换。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!