嗨我正在尝试像这样使用休眠创建一个 blob,我不能使用 Hibernate.getBlobCreator 因为我不知道流的长度
final Session currentSession = sessionFactory.getCurrentSession();
currentSession.doWork(new Work() {
@Override
public void execute(Connection connection) throws SQLException {
connection.createBlob();
}
});
“createBlob”给了我一个“AbstractMethodError”。
java.lang.AbstractMethodError: com.mchange.v2.c3p0.impl.NewProxyConnection.createBlob()Ljava/sql/Blob;
但是connection的类型是“com.mchange.v2.c3p0.impl.NewProxyConnection@26561d65”,实现了这个功能,怎么会呢?