使用mybatis检索BLOB?

时间:2014-01-26 06:27:05

标签: java blob inputstream mybatis

我无法找到使用mybatis检索BLOB的正确方法。

我找到了一些例子,其中BLOB字段被分配给对象中的byte []变量。我想如果你知道你所有的BLOB字段都很小并且不介意将它们加载到内存中就可以了。但是,我有很多大型BLOB,我更喜欢将它们视为流。

我尝试将BLOB分配给java.io.InputStream类型的属性,但这不起作用。错误消息是“找不到属性inputStream的typehandler”(其中“inputStream”是InputStream属性的名称)。

有人能指出我在正确的方向吗?感谢。

3 个答案:

答案 0 :(得分:1)

嗯,这就是我这样做的方法,但对于byte [],对于InputStream应该很简单,但我认为你需要保持连接打开(我不知道是否可以用MyBatis的)。

  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

答案 1 :(得分:0)

由于InputStream没有预定义的类型处理程序,所以

1)您可以通过扩展到BaseTypeHandler并覆盖其方法来定义自己的自定义类型处理程序。我不确定,但我猜你可以返回一个InputStream对象。 http://mybatis.github.io/mybatis-3/configuration.html#typeHandlers

2)为了处理clobs,我个人使用DBMS_LOB.SUBSTR(myClobColumn,size)。由于SO,它比SUBSTR()更快。 Performance of SUBSTR on CLOB

答案 2 :(得分:0)

我以前已经遇到了麻烦。您只需要使用“ selectByExampleWithBLOBs”即可。

databaseStatementMapper.selectByExampleWithBLOBs(selectIn);

这是我已经遇到过的Mybatis的一个好功能:))