gpt4 book ai didi

spring - 如何在 Spring Data 中使用投影覆盖 findById

转载 作者:行者123 更新时间:2023-12-05 00:42:13 28 4
gpt4 key购买 nike

在我的存储库中,我需要将 Projection 用于 findById 方法:

@Repository
public interface ForumRepository extends CrudRepository<Forum,Integer> {
ForumDTO findById(Integer id);
}

但是由于 CrudRepository 中已经存在 findByID,所以我不能用不同的返回类型覆盖它,还有其他方法可以归档它吗?

最佳答案

我刚刚发现我不需要重写它,因为我可以使用 getBy 而不是 findBy:

public interface ForumRepository extends CrudRepository<Forum,Integer> {
ForumDTO getById(Integer id);
}

关于spring - 如何在 Spring Data 中使用投影覆盖 findById,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49669511/

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