如何使用iBatis从数据库中选择BLOB列

时间:2012-08-21 17:17:03

标签: oracle mapping blob ibatis

表的一个列是BLOB数据类型(Oracle 10g)。我们有一个简单的选择查询,通过iBatis执行选择BLOB列并使用Struts2& amp;显示它。 JSP。

iBatis xml文件中的结果标记的jdbctype为java.sql.Blob

<result property="uploadContent" column="uploadcontent" jdbctype="Blob"/>   

我们应该为Blob列提及任何typeHandler类吗? 目前我们收到错误,指出列类型不匹配。

注意:选择此列并将其映射到具有java.sql.Blob类型属性的java bean

4 个答案:

答案 0 :(得分:3)

我认为您不能在jdbctype的Oracle中使用LOB类型的原生iBatis。解决方案是创建自定义typeHandler以处理LOB,然后将其映射为 -

<result property="aClassStringProperty" column="aClobColumn" typeHandler="com.path.to.my.ClobTypeHandler"/>

有关typeHandlerCallback here的更多信息。

答案 1 :(得分:2)

创建typeHandler不是必需的。对于 Oracle ,jdbctype为 BLOB

<result property="bytes" column="COLUMNBLOB"  jdbcType="BLOB" />

将“bytes”假设为byte []。

重要的是:在select sql中,必须以这种方式设置jdbcType:

INSERT INTO X (COLUMNBLOB) VALUES #bytes:BLOB#

我注意到 Postgresql 的这个jdbctype是不同的。你必须设置:

<result property="bytes" column="COLUMNBLOB"  jdbcType="BINARY" />

答案 2 :(得分:0)

我找到了处理此here的人。

对于 CLOB

<result property="uploadContent" column="obfile" jdbctype="String" />

对于 BLOB

<result property="uploadContent" column="obfile" jdbctype="byte[]" />

我仍在寻找与C#合作的方式!

答案 3 :(得分:0)

我在使用INSERT时遇到问题,我的问题在于我选择了blob类型的SELECT。我正在使用Oracle 9i,这就是我的工作方式:

  1. 将Oracle JDBC驱动程序添加到项目中,您也需要mybatis个依赖项。如果您使用的是Maven:

    <dependency>
        <groupId>com.oracle</groupId>
        <artifactId>ojdbc14</artifactId>
        <version>10.2.0.3.0</version>
    </dependency>
    <dependency>
        <groupId>org.mybatis</groupId>
        <artifactId>mybatis-spring</artifactId>
        <version>1.2.1</version>
    </dependency>
    <dependency>
        <groupId>org.mybatis</groupId>
        <artifactId>mybatis</artifactId>
        <version>3.2.3</version>
    </dependency>
    
  2. 添加custom BaseTypeHandler for reading byte[] from Oracle BLOB类:

    @MappedTypes(byte[].class)
    public class OracleBlobTypeHandler extends BaseTypeHandler<byte[]> {
        @Override
        public void setNonNullParameter(PreparedStatement preparedStatement, int i, byte[] bytes, JdbcType jdbcType) throws SQLException {
            // see setBlobAsBytes method from https://jira.spring.io/secure/attachment/11851/OracleLobHandler.java
            try {
                if (bytes != null) {
                    //prepareLob
                    BLOB blob = BLOB.createTemporary(preparedStatement.getConnection(), true, BLOB.DURATION_SESSION);
    
                    //callback.populateLob
                    OutputStream os = blob.getBinaryOutputStream();
                    try {
                        os.write(bytes);
                    } catch (Exception e) {
                        throw new SQLException(e);
                    } finally {
                        try {
                            os.close();
                        } catch (Exception e) {
                            e.printStackTrace();//ignore
                        }
                    }
                    preparedStatement.setBlob(i, blob);
                } else {
                    preparedStatement.setBlob(i, (Blob) null);
                }
            } catch (Exception e) {
                throw new SQLException(e);
            }
        }
    
        /** see getBlobAsBytes method from https://jira.spring.io/secure/attachment/11851/OracleLobHandler.java */
        private byte[] getBlobAsBytes(BLOB blob) throws SQLException {
    
            //initializeResourcesBeforeRead
            if(!blob.isTemporary()) {
                blob.open(BLOB.MODE_READONLY);
            }
    
            //read
            byte[] bytes = blob.getBytes(1L, (int)blob.length());
    
            //releaseResourcesAfterRead
            if(blob.isTemporary()) {
                blob.freeTemporary();
            } else if(blob.isOpen()) {
                blob.close();
            }
    
            return bytes;
        }
    
        @Override
        public byte[] getNullableResult(ResultSet resultSet, String columnName) throws SQLException {
            try {
                //use a custom oracle.sql.BLOB
                BLOB blob = (BLOB) resultSet.getBlob(columnName);
                return getBlobAsBytes(blob);
            } catch (Exception e) {
                throw new SQLException(e);
            }
        }
    
        @Override
        public byte[] getNullableResult(ResultSet resultSet, int i) throws SQLException {
            try {
                //use a custom oracle.sql.BLOB
                BLOB blob = (BLOB) resultSet.getBlob(i);
                return getBlobAsBytes(blob);
            } catch (Exception e) {
                throw new SQLException(e);
            }
        }
    
        @Override
        public byte[] getNullableResult(CallableStatement callableStatement, int i) throws SQLException {
            try {
                //use a custom oracle.sql.BLOB
                BLOB blob = (BLOB) callableStatement.getBlob(i);
                return getBlobAsBytes(blob);
            } catch (Exception e) {
                throw new SQLException(e);
            }
        }
    }
    
  3. 将类型处理程序包添加到mybatis配置中。如你所见,我正在使用spring-mybatis:

    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="typeHandlersPackage" value="package.where.customhandler.is" />
    </bean>
    
  4. 然后,您可以从Mybatis 的Oracle BLOB中读取byte []:

    public class Bean {
        private byte[] file;
    }
    
    interface class Dao {
        @Select("select file from some_table where id=#{id}")
        Bean getBean(@Param("id") String id);
    }
    
  5. 我希望这会有所帮助。 这是对这个优秀答案的改编:这是对这个优秀答案的改编:https://stackoverflow.com/a/27522590/2692914