私たちのプロジェクトでは、以下のソリューションをプロセスDB値として使用します。ブール値。
ABC-sqlmaps.xml
<resultMap id="resultMapABC" class="com.abc.dto.ABC">
...
<result property="isA" column="is_a" typeHandler="YesNoTypeHandler"/>
...
</resultMap>
ibatis.xml
<sqlMapConfig>
...
<typeAlias alias="YesNoTypeHandler" type="com.abc.dao.sqlmap.YesNoTypeHandler"/>
<typeHandler javaType="boolean" jdbcType="BOOLCHAR" callback="YesNoTypeHandler"/>
...
</sqlMapConfig>
YesNoTypeHandler.java
package com.abc.dao.sqlmap;
import com.ibatis.sqlmap.client.extensions.ParameterSetter;
import com.ibatis.sqlmap.client.extensions.ResultGetter;
import com.ibatis.sqlmap.client.extensions.TypeHandlerCallback;
import java.sql.SQLException;
public class YesNoTypeHandler implements TypeHandlerCallback {
/**
* Sets a boolean parameter as a corresponding string value ("Y" or "N").
*
* @param setter The <code>ParameterSetter</code> for an object being setted
* @param parameter An object to set
* @throws SQLException is expected exception.
*/
public void setParameter(ParameterSetter setter, Object parameter)
throws SQLException {
Boolean value = (Boolean) parameter;
if (value == null) {
value = Boolean.FALSE;
}
setter.setString(value ? "Y" : "N");
}
/**
* Performs the string "Y"/"N" to the boolean type and gets the result as a boolean object.
*
* @param getter The <code>ResultGetter</code>
* @return object.
* @throws SQLException is expected exception.
*/
public Object getResult(ResultGetter getter) throws SQLException {
String value = getter.getString();
return "Y".equalsIgnoreCase(value);
}
/**
* Returns the value of a string as an <code>Object</code>.
*
* @param s string.
* @return YesNoTypeHandler.
*/
public Object valueOf(String s) {
return s;
}
}
は、次のことができるようになり、同じ構成を使用している可能性があり定数を定義する。 MyBatisの3との互換性