gpt4 book ai didi

java - 从事务执行插入时,JPA 2.0 权限不足

转载 作者:行者123 更新时间:2023-12-01 05:32:44 25 4
gpt4 key购买 nike

经过大量搜索和试验,我陷入困境......我有两个类,一个是 ExpectedSecurityReturn,另一个是 ForecastReturnType。 ForecastReturnType 是 ExpectedSecurityReturn 的成员,但在持久数据时不应插入。我不断收到“权限不足”的消息,但我知道用户确实具有对表 Expected_security_return 的删除/插入权限,因为我使用 JDBC 进行了测试,并且 JPA 删除工作正常。因此,我认为这与我的类(class)有关。

@Table(name = "EXPECTED_SECURITY_RETURNS")
@Entity
@IdClass(ExpectedSecurityReturn.ExpectedSecurityReturnPK.class)
public class ExpectedSecurityReturn {

@Id
@Column(name = "REP_SEC_ID")
private Integer repSecId;

@Id
@Column(name = "AS_OF_DATE")
private Date date;

@Id
@ManyToOne(optional = false)
@JoinColumn(name = "RETURN_TYPE_ID", referencedColumnName = "RETURN_TYPE_ID", insertable=false)
private ForecastReturnType returnType;

@Column(name="CURR_TOUSD_RET") // local currency to usd
private Double currencyToUsdReturn;
}

主键类,其中包括 ForecastReturnType:

    // ------------------------------
// PK
// ------------------------------
public static class ExpectedSecurityReturnPK implements Serializable {

private static final long serialVersionUID = 1325372032981567439L;

public ExpectedSecurityReturnPK() {
}

public ExpectedSecurityReturnPK(final Integer repSecId,
final Date asOfDate, ForecastReturnType returnType) {
if (repSecId == null)
throw new IllegalArgumentException("null rep sec id");
if (asOfDate == null)
throw new IllegalArgumentException("null asOfDate");
if (returnType == null)
throw new IllegalArgumentException("null returnType");

this.repSecId = repSecId;
this.date = new Date(asOfDate.getTime());
}

@Override
public boolean equals(final Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;

final ExpectedSecurityReturnPK that = (ExpectedSecurityReturnPK) o;

if (repSecId != that.repSecId)
return false;
if (!date.equals(that.date))
return false;
if (!returnType.equals(that.returnType))
return false;

return true;
}

@Override
public int hashCode() {
int result = repSecId;
result = 31 * result + date.hashCode();
result = 31 * result + returnType.getForecastTypeId();
return result;
}

private int repSecId;
private Date date;
private ForecastReturnType returnType;
}

和预测返回类型:

@Table(name="EXPECTED_SEC_RET_TYPE_DECODE")
@Entity
public class ForecastReturnType {

@Id
@Column(name="RETURN_TYPE_ID")
private int forecastTypeId;

@Column(name="SHORT_NAME")
private String shortName;

@Column(name="LONG_NAME")
private String longName;

@OneToMany(fetch=FetchType.LAZY, mappedBy="returnType")
Collection<ExpectedSecurityReturn> expectedSecurityReturns;
}

谁能帮我弄清楚我做错了什么吗?我尝试了很多方法但没有成功...我认为罪魁祸首是 ExpectedSecurityReturn.returnType 因为我知道用户没有权限。

基本上,我需要插入/保留 ExpectedSecurityReturn 实例。

最佳答案

嗯,有几件事。

我强烈建议不要尝试这样做。您可能会浪费生命来解决 JPA 注释和诸如此类似乎永远无法正常工作的奇怪问题。您还会发现,当涉及到像这样的更复杂的结构时,不同的 JPA 提供程序的行为会略有不同,并且对于继承而言,它的表现会加倍。

在 EXPECTED_SECURITY_RETURNS 上创建一个唯一的 key 确实会更好,并且使用它,它会让您的 Java 生活变得更加轻松。

如果您必须做这样的事情,我对 JPA 不愿让主键组件成为另一个实体对象并不感到惊讶。虽然这在 RDBMS 中当然很有可能,但看起来像这样的小事情就会导致 JPA 出错。

我还会检查您的 JPA impl 将输出的查询日志(对于大多数 JPA 提供程序,当然是 Ecpliselink 和 Hibernate,它在持久性定义中可以相当轻松地进行配置)。我愿意打赌它正在尝试对 EXPECTED_SEC_RET_TYPE_DECODE 运行更新,如果没有,它可能会尝试获取锁(表、行或其他锁,具体取决于您的 DBMS)。如果用户无权对该表执行锁定或更新,则查询可能会因权限问题而失败,具体取决于具体的实现。

JPA 希望持有该表的锁是合理的,因为在事务期间,EXPECTED_SEC_RET_TYPE_DECODE 中引用的条目可能会发生更改,因此必须确保在更新时不会发生更改/插入到另一张 table 上。最后我检查了一下,没有办法告诉 JPA 该表本质上是静态的。如果您使用 Hibernate,您可以尝试使用 @ReadOnly 注释,但在过去,我尝试过的方法并不能解决这样的问题。

如果您确实找到了更好的解决方案,请随时发布,以便我们其他人可以学习!!

关于java - 从事务执行插入时,JPA 2.0 权限不足,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8715140/

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