CRUDRepository 中的 Update 或 saveorUpdate [英] Update or saveorUpdate in CRUDRepository

查看:86
本文介绍了CRUDRepository 中的 Update 或 saveorUpdate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道之前已经回答了一个类似的问题,但我的问题是在界面中有 3 个方法时使用更新实现保存.我目前在我的项目中使用以下方法,但不知道如何在其中进行 saveOrUpdate.以下是我的课程:

I know there's already a similar question answered previously, but my problem is implementing save with update while there are 3 methods in the interface. I'm currently using the following methods in my project and don't know how to make saveOrUpdate in this. The following are my classes:

   public interface CompanyRepository extends CrudRepository<Company,Long>{
   Company findByCompanyName (String companyName);
   List<Company> findAll();
   Company findById(Long id);
   }

以下是我的公司课程的一部分

The following is part of my Company Class

@Entity
public class Company extends BaseEntity{
 @NotNull
@Size(min = 2, max = 16)
private String companyName;
@Length(max = 60)
private String desc;
//TODO max: add LOGO class later for pic saving
@OneToMany
private List<MobileModel> mobileModels;

public Company()
{
  super();
  mobileModels = new ArrayList<>();
  }

//Getters n setters
 }

以下是我的 baseEntity 类

The following is my baseEntity clas

@MappedSuperclass
public abstract class BaseEntity {
@Id
@GeneratedValue(strategy =  GenerationType.AUTO)
protected final Long id;

@Version
private Long version;  
//Getters n setters
}

提前致谢.我到处阅读,并在 5 个小时内尝试了很多东西.我只希望 CompanyRepository 实现所有 3 种方法,而无需我在其他类中覆盖它们,但如果我也有,请解释如何因为我的部分代码依赖于 CompanyRepository.我只是想添加保存更新,请解释我的代码.

Thanks in advance. I read everywhere and tried so many things for 5 hours. I just want CompanyRepository to implement all 3 methods without me overriding them in some other class but if I have too then explain how because part of my code is dependent on CompanyRepository. I just wish to add save with update, please explain with respect to my code.

推荐答案

CrudRepository 只有 save 但它也可以作为 update.

CrudRepository has only save but it acts as update as well.

  • 当您对具有空 id 的实体执行 save 时,它将执行 save.
  • 当您对具有现有 id 的实体执行 save 时,它会执行 update,这意味着在您使用 findById 例如并更改了对象中的某些内容,您可以在此对象上调用 save ,它实际上会执行 update 因为在 findById 之后获取数据库中存在的填充了 id 的对象.
  • CrudRepository 中的
  • save 可以接受单个实体或您的实体类型的 Iterable.
  • When you do save on entity with empty id it will do a save.
  • When you do save on entity with existing id it will do an update that means that after you used findById for example and changed something in your object, you can call save on this object and it will actually do an update because after findById you get an object with populated id that exist in your DB.
  • save in CrudRepository can accept a single entity or Iterable of your entity type.

这篇关于CRUDRepository 中的 Update 或 saveorUpdate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆