8

我有一个包含一些字符串、整数和布尔字段的类。我为他们声明了 getter 和 setter。

public class SomeClass {

    private int id;
    private String description;
    private boolean active;

    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }
    public boolean isActive() {
        return active;
    }
    public void setActive(boolean active) {
        this.active = active;
    }


}

我是 BeanPropertyRowMapper 从 Oracle DB 中获取所有对象。

@Override
public List<Destination> getAll() {
     List<SomeClass> objs = jdbcTemplate.query(
                myQuery, new BeanPropertyRowMapper<SomeClass>(SomeClass.class));
     return objs;
}   

如果调试已打开,我会看到:

[3/14/13 10:02:09:202 EDT] 00000018 SystemOut     O DEBUG BeanPropertyRowMapper - Mapping column 'ID' to property 'id' of type int
[3/14/13 10:02:09:202 EDT] 00000018 SystemOut     O DEBUG BeanPropertyRowMapper - Mapping column 'DESCRIPTION' to property 'description' of type class java.lang.String

然后它尝试映射活动失败。Active 定义为 DB 中的 1 字节 CHAR,其值为“Y”或“N”。使用 BeanPropertyRowMapper 并成功将“Y”和“N”等值转换为布尔值的最佳方法是什么?

4

4 回答 4

12

所以我想出了如何做到这一点。在将控件移交给 beanpropertyrowmapper 以获取其余数据类型之前,我通过一些自定义代码扩展了 BeanPropertyRowMapper 和处理程序布尔类型。

注意:它适用于我,因为我使用 oracle 并且所有“布尔”类型的列都是具有“y”、“是”、“n”和“否”类型值的字符串。

那些使用数字 1,0 或其他格式的人可能会进一步改进它,方法是通过对象是映射使其通用并从结果集中获取对象并在此映射中查找它们。希望这可以帮助像我这样的情况的其他人。

import java.beans.PropertyDescriptor;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

import org.apache.commons.lang3.StringUtils;
import org.springframework.jdbc.core.BeanPropertyRowMapper;

/**
 * Extends BeanPropertyRowMapper to allow for boolean fields
 * mapped to 'Y,'N' type column to get set correctly. Using stock BeanPropertyRowMapper
 * would throw a SQLException.
 * 
 */
public class ExtendedBeanPropertyRowMapper<T> extends BeanPropertyRowMapper<T> {

    //Contains valid true values
    public static final Set<String> TRUE_SET = new HashSet<String>(Arrays.asList("y", "yes", "true"));

    public ExtendedBeanPropertyRowMapper(Class<T> class1) {
        super(class1);
    }

    @Override
    /**
     * Override <code>getColumnValue</code> to add ability to map 'Y','N' type columns to
     * boolean properties.
     * 
     * @param rs is the ResultSet holding the data
     * @param index is the column index
     * @param pd the bean property that each result object is expected to match
     * (or <code>null</code> if none specified)
     * @return the Object value
     * @throws SQLException in case of extraction failure
     * @see org.springframework.jdbc.core.BeanPropertyRowMapper#getColumnValue(java.sql.ResultSet, int, PropertyDescriptor) 
     */
    protected Object getColumnValue(ResultSet rs, int index,
            PropertyDescriptor pd) throws SQLException {
        Class<?> requiredType = pd.getPropertyType();
        if (boolean.class.equals(requiredType) || Boolean.class.equals(requiredType)) {
            String stringValue = rs.getString(index);
            if(!StringUtils.isEmpty(stringValue) && TRUE_SET.contains(stringValue.toLowerCase())){
                return true;
            }
            else return false;
        }       
        return super.getColumnValue(rs, index, pd);
    }
}
于 2013-03-14T19:20:01.890 回答
3

BeanPropertyRowMapper将使用和将值转换为Boolean对象。刚试过这个,它的工作原理。0=false1=true

这篇博文包含更多信息,以及带有 OCCI 的 Java 和 C 代码示例。

于 2015-02-27T15:25:39.563 回答
1

老问题,但你可以做类似的事情

public void setIsActive(String active) {
    this.active = "Y".equalsIgnoreCase(active);
}
于 2016-06-20T10:22:56.153 回答
1

正如 Harikumar 所指出的,BeanPropertyRowMapper实际上确实将 0 和 1 转换为布尔值。我找不到任何文档来支持这一点,但这实际上是当前的情况。

因此,不需要您扩展的解决方案是BeanPropertyRowMapper将您的列解码为这些值:

@Override
public List<Destination> getAll() {
     List<SomeClass> objs = jdbcTemplate.query(
                "SELECT ID, DESCRIPTION, " +
                " DECODE(ACTIVE, 'Y', 1,'N', 0) as ACTIVE " +
                " FROM YOUR_TABLE",
                new BeanPropertyRowMapper<SomeClass>(SomeClass.class));
     return objs;
}   
于 2017-04-19T15:26:28.123 回答