私はブール値をY/Nとしてデータベースに挿入しました。私が結果をブール型Java型にマップしようとすると、私のpojoの中のどの場合でも常にfalseに設定されます。MyBatis:文字列をブール値にマップ
文字列をブール値にマップする方法はありますか?私のコードは次のとおりです。
<resultMap id="getFlag" type="MyPojo">
<result property="myFlag" column="MY_FLAG"/>
</resultMap>
私はブール値をY/Nとしてデータベースに挿入しました。私が結果をブール型Java型にマップしようとすると、私のpojoの中のどの場合でも常にfalseに設定されます。MyBatis:文字列をブール値にマップ
文字列をブール値にマップする方法はありますか?私のコードは次のとおりです。
<resultMap id="getFlag" type="MyPojo">
<result property="myFlag" column="MY_FLAG"/>
</resultMap>
はあなたY/NブールタイプのtypeHandlerです: (more explained here) 実際のハンドラ:
public class YesNoBooleanTypeHandler extends BaseTypeHandler<Boolean> {
@Override
public void setNonNullParameter(PreparedStatement ps, int i, Boolean parameter, JdbcType jdbcType)
throws SQLException {
ps.setString(i, convert(parameter));
}
@Override
public Boolean getNullableResult(ResultSet rs, String columnName)
throws SQLException {
return convert(rs.getString(columnName));
}
@Override
public Boolean getNullableResult(ResultSet rs, int columnIndex)
throws SQLException {
return convert(rs.getString(columnIndex));
}
@Override
public Boolean getNullableResult(CallableStatement cs, int columnIndex)
throws SQLException {
return convert(cs.getString(columnIndex));
}
private String convert(Boolean b) {
return b ? "Y" : "N";
}
private Boolean convert(String s) {
return s.equals("Y");
}
}
あなたの用法:
<result property="myFlag" column="MY_FLAG" javaType="java.lang.Boolean" jdbcType="VARCHAR" typeHandler="com.foo.bar.YesNoBooleanTypeHandler" />
カスタムのTypeHandlerの実装を見る方法があります。 http://www.mybatis.org/mybatis-3/configuration.html#typeHandlers。あなたが必要なもの
設定[の可能性の重複が休止状態(使用しますJPA)は0/1の代わりにBoolean型のY/Nを格納するようにしました](http://stackoverflow.com/questions/1154833/configure-hibernate-using-jpa-to-store-yn-for-type-boolean-instead -of-0-1) – DimaSan
クエリsqlで 'Y/N'を' boolean'に変換することができます。 – Blank