在 MyBatis 中,可以通過使用 TypeHandler 來實現 LocalDate 和數據庫之間的互通。
首先,需要自定義一個實現 TypeHandler 接口的類來處理 LocalDate 和數據庫之間的轉換。可以參考以下示例代碼:
import org.apache.ibatis.type.BaseTypeHandler;
import org.apache.ibatis.type.JdbcType;
import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.time.LocalDate;
public class LocalDateTypeHandler extends BaseTypeHandler<LocalDate> {
@Override
public void setNonNullParameter(PreparedStatement ps, int i, LocalDate parameter, JdbcType jdbcType) throws SQLException {
ps.setDate(i, java.sql.Date.valueOf(parameter));
}
@Override
public LocalDate getNullableResult(ResultSet rs, String columnName) throws SQLException {
java.sql.Date date = rs.getDate(columnName);
return date != null ? date.toLocalDate() : null;
}
@Override
public LocalDate getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
java.sql.Date date = rs.getDate(columnIndex);
return date != null ? date.toLocalDate() : null;
}
@Override
public LocalDate getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
java.sql.Date date = cs.getDate(columnIndex);
return date != null ? date.toLocalDate() : null;
}
}
接下來,在 MyBatis 的配置文件中注冊這個 TypeHandler:
<typeHandlers>
<typeHandler handler="your.package.LocalDateTypeHandler"/>
</typeHandlers>
然后,在 Mapper 接口中使用該 TypeHandler,例如:
@Results({
@Result(property = "birthDate", column = "birth_date", javaType = LocalDate.class, typeHandler = LocalDateTypeHandler.class)
})
@Select("SELECT id, name, birth_date FROM user")
List<User> selectAll();
以上就是將 LocalDate 和數據庫之間互相轉換的方法。通過自定義 TypeHandler,可以方便地在 MyBatis 中處理 LocalDate 類型的數據。