gpt4 book ai didi

java - 无法将 NULL 插入列

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:00:43 31 4
gpt4 key购买 nike

我正在尝试让 Hibernate 延迟加载一些 clob。加载部分工作正常。问题是当我尝试创建一个新的时。我从 Blob lazy loading 的建议开始

这是我的映射(请注意表结构真的很糟糕,这个表上有多个 clob -- 这个例子是从我的真实模型中简化的...)。

@Entity @Table("TABLE_1")
public class BadDBDesign {
@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
@Column("table_id")
private long key;

@OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JoinColumn(name = "table_id", referencedColumnName = "table_id",
insertable = true, updatable = false)
private BlobWrapperA;

@OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JoinColumn(name = "table_id", referencedColumnName = "table_id",
insertable = true, updatable = false)
private BlobWrapperB;
}

@Entity @Table(name = "TABLE_1")
public class BlobWrapperA {
@Lob
@Column(name = "col_A", nullable = false)
@Type(type = "org.springframework.orm.hibernate3.support.BlobByteArrayType")
private byte[] blobColA;

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "table_id")
private long Key;
}

@Entity @Table(name = "TABLE_1")
public class BlobWrapperB {
@Lob
@Column(name = "col_B", nullable = false)
@Type(type = "org.springframework.orm.hibernate3.support.BlobByteArrayType")
private byte[] blobColB;

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "table_id")
private long Key;
}

应用程序启动正常,能够在不加载 clob 的情况下检索数据(能够在需要时通过延迟加载检索它们),但是当我尝试创建新的 clob 时,我收到以下堆栈跟踪:

Hibernate: 
insert
into
TABLE_1
(key, col_A, col_B)
values
(?, ?, ?)
2011-08-31 17:35:09,089 [http-8080-1] DEBUG org.springframework.jdbc.support.lob.DefaultLobHandler IP134.167.141.34 CV#f2a597b2-a185-4e89 P#71252 - Set bytes for BLOB with length 7136
2011-08-31 17:35:16,441 [http-8080-1] DEBUG org.springframework.jdbc.support.lob.DefaultLobHandler IP134.167.141.34 CV#f2a597b2-a185-4e89 P#71252 - Set bytes for BLOB with length 10946
Aug 31, 2011 5:35:50 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet online threw exception java.sql.SQLIntegrityConstraintViolationException: ORA-01400: cannot insert NULL into ("SCHEMA"."TABLE_1"."COL_A")

at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:440)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:837)
at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:445)
at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:191)
at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:523)
at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:207)
at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1010)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1315)
at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3576)
at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3657)
at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
at org.apache.tomcat.dbcp.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:105)
at org.apache.tomcat.dbcp.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:105)

请注意我们在生成的 SQL 中的 Hibernate 插入语句之后立即看到 clob 的长度的重要部分。

编辑:今天早上看了这个之后,我意识到问题是由于其中一个 Blob 必须使用 @JoinColumn(insertable = false, updatable = false) 进行映射,否则 hibernate 无法启动。因此,它当然试图将 Null 插入到该列中。所以新的问题变成了,你能不能在一个表上懒惰地 MULTIPLE clobs(使用相同的键)。我猜如果不重新设计表,除非 Oracle 修复驱动程序,否则我很不走运。

最佳答案

尽管这让我想吐,但我们需要在不修改数据库的情况下获得此功能。

因此,我将通用部分提取到如下抽象类中:

@MappedSuperclass @Table("TABLE_1")
public class BadDBDesign {
@Id @GeneratedValue(strategy = GenerationType.IDENTITY)
@Column("table_id")
private long key;

@Column("small_value")
private String smallVarChar2Field;
}

问题是我必须为我们的每个 blob 扩展这个类 :( 因此我们的扩展类看起来像:

public class BlobA extends BadDBDesign {
@Lob @Column("col_a")
@Type(type ="org.springframework.orm.hibernate3.support.BlobByteArrayType")
private byte[] blobColA;
}

public class BlobB extends BadDBDesign {
@Lob @Column("col_b")
@Type(type ="org.springframework.orm.hibernate3.support.BlobByteArrayType")
private byte[] blobColB;
}

幸运的是,我们在任何给定页面上都没有超过一个 clob 的位置。这仍然是一场维护噩梦,但在更有效地完成负载方面是一个可以接受的权衡(暂时)。我为这些创建了 DAO,该项目之前没有;希望这会插入团队朝着正确的抽象层方向发展,我们希望在未来的版本中完全删除这些浪费的 POJO。

关于java - 无法将 NULL 插入列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7263974/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com