MyBatisでカスタム型変換器をどのように定義しますか?
MyBatisでは、TypeHandlerインターフェースを実装することで、カスタムな型変換器を作成することができます。以下はカスタムな型変換器の例です:
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;
public class CustomTypeHandler implements TypeHandler<CustomType> {
@Override
public void setParameter(PreparedStatement ps, int i, CustomType parameter, JdbcType jdbcType) throws SQLException {
ps.setString(i, parameter.toString());
}
@Override
public CustomType getResult(ResultSet rs, String columnName) throws SQLException {
return CustomType.valueOf(rs.getString(columnName));
}
@Override
public CustomType getResult(ResultSet rs, int columnIndex) throws SQLException {
return CustomType.valueOf(rs.getString(columnIndex));
}
@Override
public CustomType getResult(CallableStatement cs, int columnIndex) throws SQLException {
return CustomType.valueOf(cs.getString(columnIndex));
}
}
上記の例では、CustomTypeはカスタム列挙型であり、私たちはTypeHandlerインターフェースを実装し、setParameterとgetResultメソッドをオーバーライドして、カスタムタイプとデータベースフィールドの変換を実現しました。
マイバティスの設定ファイルでカスタムタイプコンバーターを登録する必要があります。
<typeHandlers>
<typeHandler handler="com.example.CustomTypeHandler"/>
</typeHandlers>
このようにすれば、MyBatisでカスタムタイプコンバータを使用して、データベースのフィールドとJavaオブジェクトの間の変換を処理できます。