gpt4 book ai didi

java - Spring数据投影不起作用

转载 作者:行者123 更新时间:2023-12-02 02:06:46 24 4
gpt4 key购买 nike

看起来 Spring-Data 投影无法正常工作。 @CreationDate 注释字段也为空。这有什么问题吗?

这是Category实体类:

package api.product.domain;

import lombok.AccessLevel;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.Accessors;
import org.hibernate.annotations.DynamicUpdate;
import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.annotation.LastModifiedDate;

import javax.persistence.*;
import java.time.LocalDateTime;
import java.util.Set;

@Entity
@Getter
@DynamicUpdate
@EqualsAndHashCode(of = "name")
@NoArgsConstructor
class Category {

@Id
@GeneratedValue(generator = "ID_GENERATOR")
private Long id;

@OneToMany(fetch = FetchType.LAZY, mappedBy = "category", cascade = CascadeType.ALL)
private Set<Product> products;

@Setter
@Accessors(chain = true)
@Column(unique = true, length = 20, nullable = false)
private String name;

@ManyToOne(cascade = {CascadeType.ALL})
@JoinColumn(name = "parent_category_id")
@Setter
@Accessors(chain = true)
private Category parentCategory;

@CreatedDate
@Setter
private LocalDateTime creationDate;

@LastModifiedDate
@Setter
private LocalDateTime lastModifiedDate;

Category(String name, Category parentCategory){
this.name = name;
this.parentCategory = parentCategory;
}
}

投影界面:

public interface ShowCategoryDto {
@Value("#{target.id}")
Long getId();
String getName();
Set<ProductBasicDto> getProducts();
}

和存储库:

interface CategoryRepository extends Repository<Category, Long> {

Set<ShowCategoryDto> findAll();

Optional<ShowCategoryDto> findOptionalById(Long id);

Category save(Category category);

Optional<Category> getOneById(Long id);

void removeById(Long id);
}

现在,当我调用 findAll 方法时,它返回:

creationDate:null
id:1
lastModifiedDate:null
name:"wwwwwwwwww"
parentCategory:null
products:[]

所以我在这里看到两个问题。第一个是未应用投影,第二个是 creationDatelastModifiedDate 字段中存在空值。有人知道发生这种情况的原因并可以与我分享吗?

最佳答案

findAll是CrudRepository接口(interface)的方法,其signature是:

List<T> findAll()

其中 T 是您的实体

如果您需要一个返回投影而不是实体的自定义方法,您应该为该方法使用另一个名称,例如:

List<MyProjection> findBy()
List<MyProjection> findAllBy()
List<MyProjection> findProjectionsBy()
List<MyProjection> getProjectionsBy()

等等

更多信息:
Query Creation
Working with projections

关于java - Spring数据投影不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50647623/

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