gpt4 book ai didi

java - 在 spring data jpa 投影中使用嵌入值对象

转载 作者:行者123 更新时间:2023-11-30 06:16:50 25 4
gpt4 key购买 nike

我正在使用 Spring Boot 2.0RC2,在我读到的文档中,您可以在调用存储库时返回实体的投影而不是整个实体。如果我在实体中使用字符串,则效果很好,但当我使用嵌入值对象时,则效果不佳。

假设我有 Product 实体:

@Entity
@Table(name = "t_product")
public class Product extends BaseEntity {

@Column(nullable = false)
private String name;

private Product() {}

private Product(final String name) {
this.name = name;
}

public static Result<Product> create(@NonNull final String name) {
return Result.ok(new Product(name));
}

public String getName() {
return name;
}

public void setName(@NonNull final String name) {
this.name = name;
}
}

BaseEntity 仅保存 idcreatedupdated 属性。

我的投影界面名为 ProductSummary:

interface ProductSummary {
String getName();
Long getNameLength();
}

在我的 ProductRepository 中,我有以下方法返回 ProductSummary:

public interface ProductRepository extends JpaRepository<Product, Long> {
@Query(value = "SELECT p.name as name, LENGTH(p.name) as nameLength FROM Product p WHERE p.id = :id")
ProductSummary findSummaryById(@Param("id") Long id);
}

这工作得很好。现在,假设我正在执行 DDD,而不是使用字符串来表示 Product 实体中的 name 属性,我想使用名为 Name< 的值对象:

@Embeddable
public class Name implements Serializable {

public static final int MAX_NAME_LENGTH = 100;

@Column(nullable = false, length = Name.MAX_NAME_LENGTH)
private String value;

private Name() {}

private Name(final String value) {
this.value = value;
}

public static Result<Name> create(@NonNull final String name) {
if (name.isEmpty()) {
return Result.fail("Name cannot be empty");
}

if (name.length() > MAX_NAME_LENGTH) {
return Result.fail("Name cannot be longer than " + MAX_NAME_LENGTH + " characters");
}

return Result.ok(new Name(name));
}

public String getValue() {
return value;
}
}

我将我的 Product 实体更改为:

@Entity
@Table(name = "t_product")
public class Product extends BaseEntity {

@Embedded
private Name name;

private Product() {}

private Product(final Name name) {
this.name = name;
}

public static Result<Product> create(@NonNull final Name name) {
return Result.ok(new Product(name));
}

public Name getName() {
return name;
}

public void setName(final Name name) {
this.name = name;
}
}

ProductSummary 中,我将返回类型从 String 更改为 Name

当我运行时,我总是遇到异常:

Caused by: java.lang.IllegalAccessError: tried to access class com.acme.core.product.ProductSummary from class com.sun.proxy.$Proxy112

我可以完成这项工作吗?还是我缺少一些不允许这样做的限制?

最佳答案

如果您希望获取完整的Name字段(而不是Name类中的特定字段),那么您需要创建另一个接口(interface),例如ProductSummary。

interface ProductSummary {
NameSummary getName();

interface NameSummary {
String getValue();
}
}

无需更改存储库中的任何内容。

记录得很清楚here

并确保您的接口(interface)和方法是公共(public)的。

关于java - 在 spring data jpa 投影中使用嵌入值对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49010287/

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