- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 JpaRepository 通过 ID 从数据库中获取对象,但遇到了一些麻烦。它是一个具有 EmbeddedId 的实体。
我正在尝试以两种不同的方式获取对象:
尝试使用命名方法获取它时遇到的异常是:
@Override
public SowDocument getById(int i) {
SowDocument wow = sowRepository.findById(i);
if (wow == null) {
System.out.println("NULLLLLLLLLLLLLLLL");
return null;
} else {
return wow;
}
}
HTTP Status 500 - Request processing failed; nested exception is org.springframework.dao.InvalidDataAccessApiUsageException: Parameter with that position [1] did not exist; nested exception is java.lang.IllegalArgumentException: Parameter with that position [1] did not exist
...
...
at com.sun.proxy.$Proxy791.findById(Unknown Source)
at com.**.pricing.web.services.impl.SowServiceImpl.getById(SowServiceImpl.java:61)
at com.**.pricing.web.controllers.UserController.getSowById(UserController.java:99)
当我尝试使用 EmbeddedId 获取它时,我得到一个 NullPointerException:
@Override
public SowDocument getById(int i) {
SowDocumentPK peek = new SowDocumentPK();
peek.setId(i);
SowDocument wow = sowRepository.findOne(peek);
if (wow == null) {
System.out.println("NULLLLLLLLLLLLLLLL");
return null;
} else {
return wow;
}
}
这是对象:
@Entity
@Table(name = "SowDocument", uniqueConstraints = {
@UniqueConstraint(columnNames = {"id"})})
@XmlRootElement
@NamedQueries({
@NamedQuery(name = "SowDocument.findAll", query = "SELECT s FROM SowDocument s"),
@NamedQuery(name = "SowDocument.findById", query = "SELECT s FROM SowDocument s WHERE s.sowDocumentPK.id = :id"),
@NamedQuery(name = "SowDocument.findByClientName", query = "SELECT s FROM SowDocument s WHERE s.clientName = :clientName"),
@NamedQuery(name = "SowDocument.findByCreationDate", query = "SELECT s FROM SowDocument s WHERE s.creationDate = :creationDate"),
@NamedQuery(name = "SowDocument.findByDocumentCreator", query = "SELECT s FROM SowDocument s WHERE s.sowDocumentPK.documentCreator = :documentCreator"),
@NamedQuery(name = "SowDocument.findBySowType", query = "SELECT s FROM SowDocument s WHERE s.sowType = :sowType")})
public class SowDocument implements Serializable {
private static final long serialVersionUID = 1L;
@EmbeddedId
protected SowDocumentPK sowDocumentPK;
@Size(max = 50)
@Column(name = "clientName", length = 50)
private String clientName;
@Size(max = 45)
@Column(name = "creationDate", length = 45)
private String creationDate;
@Lob
@Column(name = "data")
private byte[] data;
@Size(max = 45)
@Column(name = "sowType", length = 45)
private String sowType;
@JoinColumn(name = "documentCreator", referencedColumnName = "id", nullable = false, insertable = false, updatable = false)
@ManyToOne(optional = false)
private User user;
public SowDocument() {
}
public SowDocument(SowDocumentPK sowDocumentPK) {
this.sowDocumentPK = sowDocumentPK;
}
public SowDocument(int id, int documentCreator) {
this.sowDocumentPK = new SowDocumentPK(id, documentCreator);
}
public SowDocumentPK getSowDocumentPK() {
return sowDocumentPK;
}
public void setSowDocumentPK(SowDocumentPK sowDocumentPK) {
this.sowDocumentPK = sowDocumentPK;
}
public String getClientName() {
return clientName;
}
public void setClientName(String clientName) {
this.clientName = clientName;
}
public String getCreationDate() {
return creationDate;
}
public void setCreationDate(String creationDate) {
this.creationDate = creationDate;
}
public byte[] getData() {
return data;
}
public void setData(byte[] data) {
this.data = data;
}
public String getSowType() {
return sowType;
}
public void setSowType(String sowType) {
this.sowType = sowType;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
@Override
public int hashCode() {
int hash = 0;
hash += (sowDocumentPK != null ? sowDocumentPK.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof SowDocument)) {
return false;
}
SowDocument other = (SowDocument) object;
if ((this.sowDocumentPK == null && other.sowDocumentPK != null) || (this.sowDocumentPK != null && !this.sowDocumentPK.equals(other.sowDocumentPK))) {
return false;
}
return true;
}
}
这是其嵌入的 ID:
@Embeddable
public class SowDocumentPK implements Serializable {
@Basic(optional = false)
@Column(name = "id", nullable = false)
private int id;
@Basic(optional = false)
@NotNull
@Column(name = "documentCreator", nullable = false)
private int documentCreator;
public SowDocumentPK() {
}
public SowDocumentPK(int id, int documentCreator) {
this.id = id;
this.documentCreator = documentCreator;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getDocumentCreator() {
return documentCreator;
}
public void setDocumentCreator(int documentCreator) {
this.documentCreator = documentCreator;
}
@Override
public int hashCode() {
int hash = 0;
hash += (int) id;
hash += (int) documentCreator;
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof SowDocumentPK)) {
return false;
}
SowDocumentPK other = (SowDocumentPK) object;
if (this.id != other.id) {
return false;
}
return this.documentCreator == other.documentCreator;
}
}
这是 SowRepository 的代码:
public interface SowRepository extends JpaRepository<SowDocument, Serializable> {
SowDocument findById(int i);
}
这是 SowService 的代码:
@Service
public class SowServiceImpl implements SowService {
@Autowired
private SowRepository sowRepository;
@Override
public void save(SowDocument sow) {
sowRepository.save(sow);
}
@Override
public Collection<SowDocument> getAll() {
return sowRepository.findAll();
}
@Override
public SowDocument getById(int i) {
SowDocumentPK peek = new SowDocumentPK();
peek.setId(i);
return sowRepository.findOne(i);
}
}
我的猜测是,我在 SowDocument/SowDocumentPK 之间的映射有误,或者误解了如何使用 JpaRepository。
最佳答案
我猜您正在使用 SpringData JPA。如果这是正确的,请查看作为 JpaRepostory
接口(interface)的父类(super class)型 CrudRepository
是如何定义的:
public interface CrudRepository<T, ID extends Serializable> extends Repository<T, ID> {
...
T findOne(ID id);
...
}
并且您正在扩展此接口(interface)(顺便说一句,您也应该发布实现):
public interface SowRepository extends JpaRepository<SowDocument, Serializable> {
SowDocument findById(int i);
}
findById(int i)
方法在 JpaRepository
类型层次结构中的none接口(interface)中定义,这意味着它是您自己的扩展。
另一方面,您没有 ID 类型为 int
的实体。您的实体 ID 的类型定义为由两个字段组成的 ShowDocumentPK
类型。
因此您的存储库定义应如下所示:
public interface SowRepository extends JpaRepository<SowDocument, ShowDocumentPK> {
SowDocument findById(ShowDocumentPK id);
}
并自行实现findById()
方法(或者使用JpaRepository
的官方实现类,即SimpleJpaRepository
)。
然后您应该创建一个 ShowDocumentPK
实例并将其传递给 findById()
方法,例如:
SowDocumentPK peek = new SowDocumentPK();
peek.setId(1);
peek.setDocumentCreator(100);
SowDocument wow = sowRepository.findById(peek);
结论:您的 ID 不是 int
类型,并且 findById(int)
不是您案例中的实现方式。
希望这能让您了解如何正确实现它。
关于java - JpaRepository 找不到带有 EmbeddedID 的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38620775/
我的 spring 应用程序中有一个功能有问题。我在同一个数据库中有 2 个表,都包含相同类型的数据(ID、标题、描述和日期)。我可以从一张表中获取数据,但不知道如何插入到第二张表中。 在我的@Ser
我有如下 3 个实体类(示例取自 https://hellokoding.com/jpa-many-to-many-extra-columns-relationship-mapping-example
是否可以在没有实体的情况下使用 JpaRepository?在这种情况下,将其替换为 DTO。 如下示例 @Repository public interface BffRepository ext
我有使用 JPA 工具生成的用户实体和角色实体。 User 和 Role 是多对多的关系。我使用以下代码插入管理员,但是,没有数据插入到 user_role 表中。我还注意到角色类有 @JoinTab
我使用 JpaRepository 来保存数据,但 hibernate.show_sql 显示“选择”并且不会保存数据。以下是我的服务: @Autowired private UserReposito
我正在使用 Spring Boot、Hibernate 和 JPA 存储库来搜索数据。 我想通过登录用户的上下文来过滤搜索结果。例如。查找返回登录用户拥有的所有实体的方法?我有许多用于过滤的 JPA
如何从父进程中检索子进程? 假设我有父类和子类。我想从父方检索子项列表。 这是我的家长类。 +import ... @Entity public class Parent { @Id
我正在努力尝试创建一种方法来从数据库获取对象并加载依赖项。 在正常情况下,我永远不想加载它,所以我的两个对象看起来像这样: public class Training implements Seria
由于某些奇怪的原因,Jpa 生成的查询没有按预期生成。我使用 jpa 在我的存储库中编写了以下查询: 我的对象 @Id @GeneratedValue(strategy = Generatio
我正在尝试 Autowiring 服务中的存储库,但我不断收到以下错误 org.springframework.beans.factory.UnsatisfiedDependencyException
我是使用 JPA 的新手,我正在在线阅读教程,所有这些教程都从 JPARespository 扩展而来,如下所示 从此页面 https://www.callicoder.com/spring-boot
我正在制作一个应用程序,该应用程序保存用户配置文件和具有许多交易的钱包。 这是事务类: @Entity @Table(name = "transactions") public class Trans
我正在 IntelliJ 中使用 Spring Boot 我已经扩展了 JpaRepository 接口(interface),并创建了一个未在存储库变量中显示的查询到我的 Controller 中(
我只想返回特定的文件以进行服务。所以我在 JPARepository 界面中编写了以下代码: @Query(value="select r.id from Ride r") public List f
我正在使用 spring JpaRepository,并且希望使用 el 表达式提供具有通用派生 SQL 查询的通用接口(interface),如下所示: public interface BaseR
我正在尝试做一个非常简单的删除操作,但不知何故它不起作用,因为我将 DAO 更新为 JpaRepository。基本上是这样的: A a = aRepository.findOne(id); a.se
我像这样使用数据存储库: interface HerbadgeRepository extends JpaRepository { } 在甲骨文they say : To implement gene
我使用 Spring 与 Hibernate 和 JpaRepository 作为数据库存储库。 我有两个用于用户存储的类: @Entity public class User { @Id
我想要保护 JpaRepository,它将我的 OAuth 用户引用到授权角色 ROLE_ADMIN。现在我想知道我需要注释哪些方法。因此,当我想保护整个用户存储库时,登录不再起作用,因为它调用 f
我们正在使用 JpaRepository 连接 mysql。我们的存储库如下所示: public interface IRawEntityRepository extends JpaRepositor
我是一名优秀的程序员,十分优秀!