ChatGPT解决这个技术问题 Extra ChatGPT

How do I update an entity using spring-data-jpa?

Well the question pretty much says everything. Using JPARepository how do I update an entity?

JPARepository has only a save method, which does not tell me if it's create or update actually. For example, I insert a simple Object to the database User, which has three fields: firstname, lastname and age:

 @Entity
 public class User {

  private String firstname;
  private String lastname;
  //Setters and getters for age omitted, but they are the same as with firstname and lastname.
  private int age;

  @Column
  public String getFirstname() {
    return firstname;
  }
  public void setFirstname(String firstname) {
    this.firstname = firstname;
  }

  @Column
  public String getLastname() {
    return lastname;
  }
  public void setLastname(String lastname) {
    this.lastname = lastname;
  }

  private long userId;

  @Id
  @GeneratedValue(strategy=GenerationType.AUTO)
  public long getUserId(){
    return this.userId;
  }

  public void setUserId(long userId){
    this.userId = userId;
  }
}

Then I simply call save(), which at this point is actually an insert into database:

 User user1 = new User();
 user1.setFirstname("john"); user1.setLastname("dew");
 user1.setAge(16);

 userService.saveUser(user1);// This call is actually using the JPARepository: userRepository.save(user);

So far so good. Now I want to update this user, say change his age. For this purpose I could use a Query, either QueryDSL or NamedQuery, whatever. But, considering I just want to use spring-data-jpa and the JPARepository, how do I tell it that instead of an insert I want to do an update?

Specifically, how do I tell spring-data-jpa that users with the same username and firstname are actually EQUAL and that the existing entity supposed to be updated? Overriding equals did not solve this problem.

Are you sure the ID gets rewritten when you save an existing object in the database?? Never had this on my project tbh
@ByronVoorbach yup you're right, just tested this. update the question also, thx
Hello friend, you can look this link stackoverflow.com/questions/24420572/… you can be a approach like saveOrUpdate()
I think that we have a beautiful solution here: enter link description here

S
Simeon Leyzerzon

Identity of entities is defined by their primary keys. Since firstname and lastname are not parts of the primary key, you cannot tell JPA to treat Users with the same firstnames and lastnames as equal if they have different userIds.

So, if you want to update a User identified by its firstname and lastname, you need to find that User by a query, and then change appropriate fields of the object your found. These changes will be flushed to the database automatically at the end of transaction, so that you don't need to do anything to save these changes explicitly.

EDIT:

Perhaps I should elaborate on overall semantics of JPA. There are two main approaches to design of persistence APIs:

insert/update approach. When you need to modify the database you should call methods of persistence API explicitly: you call insert to insert an object, or update to save new state of the object to the database.

Unit of Work approach. In this case you have a set of objects managed by persistence library. All changes you make to these objects will be flushed to the database automatically at the end of Unit of Work (i.e. at the end of the current transaction in typical case). When you need to insert new record to the database, you make the corresponding object managed. Managed objects are identified by their primary keys, so that if you make an object with predefined primary key managed, it will be associated with the database record of the same id, and state of this object will be propagated to that record automatically.

JPA follows the latter approach. save() in Spring Data JPA is backed by merge() in plain JPA, therefore it makes your entity managed as described above. It means that calling save() on an object with predefined id will update the corresponding database record rather than insert a new one, and also explains why save() is not called create().


well yes I think I know this. I was strictly referring to spring-data-jpa. I have two problems with this answer now: 1) business values are not supposed to be part of the primary key - that is a known thing, right? So having the firstname and lastname as primary key is not good. And 2) Why is this method then not called create, but save instead in spring-data-jpa?
"save() in Spring Data JPA is backed by merge() in plain JPA" did you actually look at the code? I just did and it both backed up by either persist or merge. It will persist or update based on the presence of the id (primary key). This, I think, should be documented in the save method. So save is actually EITHER merge or persist.
I think it is also called save, because it it supposed to save the object no matter what state it is in - it is going to perform an update or insert which is equal to save state.
This will not work for me. I have tried save on an entity with a valid primary key. I access the page with "order/edit/:id" and it actually gives me the correct object by Id. Nothing I try for the love of God will update the entity. It always posts a new entity .. I even tried making a custom service and using "merge" with my EntityManager and it still won't work. It will always post a new entity.
@DTechNet I was experiencing a similar problem to you, DtechNet, and it turned out my problem was that I had the wrong primary key type specified in my Spring Data repository interface. It said extends CrudRepository<MyEntity, Integer> instead of extends CrudRepository<MyEntity, String> like it should have. Does that help? I know this is almost a year later. Hope it helps someone else.
h
hussachai

Since the answer by @axtavt focuses on JPA not spring-data-jpa

To update an entity by querying then saving is not efficient because it requires two queries and possibly the query can be quite expensive since it may join other tables and load any collections that have fetchType=FetchType.EAGER

Spring-data-jpa supports update operation.
You have to define the method in Repository interface.and annotated it with @Query and @Modifying.

@Modifying
@Query("update User u set u.firstname = ?1, u.lastname = ?2 where u.id = ?3")
void setUserInfoById(String firstname, String lastname, Integer userId);

@Query is for defining custom query and @Modifying is for telling spring-data-jpa that this query is an update operation and it requires executeUpdate() not executeQuery().

You can specify other return types:
int - the number of records being updated.
boolean - true if there is a record being updated. Otherwise, false.

Note: Run this code in a Transaction.


Make sure you run it in transaction
Hey! Thanks am using spring data beans. So it will automatically takes care of my update. S save(S entity); automatically takes care of update. i didnt have to use your method! Thanks anyways!
Anytime :) The save method does work if you want to save the entity (It will delegate the call to either em.persist() or em.merge() behind the scene). Anyway, the custom query is useful when you want to update just some fields in database.
how about when one of your parameters is id of sub entity( manyToOne) how should update that? (book have an Author and you passed book id and author id to update book author)
To update an entity by querying then saving is not efficient these are not the only two choices. There is a way to specify id and get the row object without querying it. If you do a row = repo.getOne(id) and then row.attr = 42; repo.save(row); and watch the logs, you will see only the update query.
d
deHaar

You can simply use this function with save() JPAfunction, but the object sent as parameter must contain an existing id in the database otherwise it will not work, because save() when we send an object without id, it adds directly a row in database, but if we send an object with an existing id, it changes the columns already found in the database.

public void updateUser(Userinfos u) {
    User userFromDb = userRepository.findById(u.getid());
    // crush the variables of the object found
    userFromDb.setFirstname("john"); 
    userFromDb.setLastname("dew");
    userFromDb.setAge(16);
    userRepository.save(userFromDb);
}

isn't the performance a problem if you have to load the object from database before do the update? (sorry for my english)
there is two query instead of one, which is highly not preffered
i know i juste showed up another method to do ! but why the jpa implemented the update function when the id is the same ?
You can use userRepository.getById(u.getid()) to avoid two queries (getById instead of findById).
E
Eugene

As what has already mentioned by others, the save() itself contains both create and update operation.

I just want to add supplement about what behind the save() method.

https://i.stack.imgur.com/ZCGvJ.png

Ok, let's check the save() implementation at SimpleJpaRepository<T, ID>,

@Transactional
public <S extends T> S save(S entity) {

    if (entityInformation.isNew(entity)) {
        em.persist(entity);
        return entity;
    } else {
        return em.merge(entity);
    }
}

As you can see, it will check whether the ID is existed or not firstly, if the entity is already there, only update will happen by merge(entity) method and if else, a new record is inserted by persist(entity) method.


A
Artem Arkhipov

spring data save() method will help you to perform both: adding new item and updating an existed item.

Just call the save() and enjoy the life :))


Up in this way if i sent different Id will save it , how can i avoid save new record .
@AbdAbughazaleh check whether incoming Id exists in your repository or not. you can use ' repository.findById(id).map( entity -> { //do something return repository.save(entity) } ).orElseGet( () -> { //do something return; }); '
Using save() we can avoid adding new record in the targeted table (update operation) if that table has some unique column (say Name). Now the passed entity to be updated should have same Name value as table otherwise it will create a new record.
@AbdAbughazaleh What about #OneToMany deleting the child entities that are not available in incoming request? I'm stuck since 15 days. Can you please provide your precious inputs?
@Ram Isn't Id field sufficient? That will be the unique column right?
i
ilja

Using spring-data-jpa save(), I was having same problem as @DtechNet. I mean every save() was creating new object instead of update. To solve this I had to add version field to entity and related table.


what you mean by to add version field to entity and related table.
for me save() still creates a new entity even after adding version.
@ParagKadam, make sure your entity has ID on it before you saving it.
A
Adam

This is how I solved the problem:

User inbound = ...
User existing = userRepository.findByFirstname(inbound.getFirstname());
if(existing != null) inbound.setId(existing.getId());
userRepository.save(inbound);

Use @Transaction above method for several db request. An in this case no need in userRepository.save(inbound);, changes flushed automatically.
B
BinLee
public void updateLaserDataByHumanId(String replacement, String humanId) {
    List<LaserData> laserDataByHumanId = laserDataRepository.findByHumanId(humanId);
    laserDataByHumanId.stream()
            .map(en -> en.setHumanId(replacement))
            .collect(Collectors.toList())
            .forEach(en -> laserDataRepository.save(en));
}

This statement needs a bit change. .map(en -> {en.setHumanId(replacement); return en;})
J
Javid

With java 8 you can use repository's findById in UserService

@Service
public class UserServiceImpl {

    private final UserRepository repository;

    public UserServiceImpl(UserRepository repository) {
        this.repository = repository;
    }

    @Transactional
    public void update(User user) {
        repository
                .findById(user.getId()) // returns Optional<User>
                .ifPresent(user1 -> {
                    user1.setFirstname(user.getFirstname);
                    user1.setLastname(user.getLastname);

                    repository.save(user1);
                });
    }

}

A
Andreas Gelever

Specifically how do I tell spring-data-jpa that users that have the same username and firstname are actually EQUAL and that it is supposed to update the entity. Overriding equals did not work.

For this particular purpose one can introduce a composite key like this:

CREATE TABLE IF NOT EXISTS `test`.`user` (
  `username` VARCHAR(45) NOT NULL,
  `firstname` VARCHAR(45) NOT NULL,
  `description` VARCHAR(45) NOT NULL,
  PRIMARY KEY (`username`, `firstname`))

Mapping:

@Embeddable
public class UserKey implements Serializable {
    protected String username;
    protected String firstname;

    public UserKey() {}

    public UserKey(String username, String firstname) {
        this.username = username;
        this.firstname = firstname;
    }
    // equals, hashCode
}

Here is how to use it:

@Entity
public class UserEntity implements Serializable {
    @EmbeddedId
    private UserKey primaryKey;

    private String description;

    //...
}

JpaRepository would look like this:

public interface UserEntityRepository extends JpaRepository<UserEntity, UserKey>

Then, you could use the following idiom: accept DTO with user info, extract name and firstname and create UserKey, then create a UserEntity with this composite key and then invoke Spring Data save() which should sort everything out for you.


s
sanku

If your primary key is autoincrement then, you have to set the value for the primary key. for the save(); method to work as a update().else it will create a new record in db.

if you are using jsp form then use hidden filed to set primary key.

Jsp:

Java:

@PostMapping("/update")
public String updateUser(@ModelAttribute User user) {
    repo.save(user);
    return "redirect:userlist";
}

also look at this:

@Override
  @Transactional
  public Customer save(Customer customer) {

    // Is new?
    if (customer.getId() == null) {
      em.persist(customer);
      return customer;
    } else {
      return em.merge(customer);
    }
  }

J
Johan

As mentioned by others answer, method save() is dual function. It can both do save or update, it's automatically update if you provide the id.

for update method in controller class I suggested to use @PatchMapping. below is the example.

#Save method POST

{
    "username": "jhon.doe",
    "displayName": "Jhon",
    "password": "xxxyyyzzz",
    "email": "jhon.doe@mail.com"
}
@PostMapping("/user")
public void setUser(@RequestBody User user) {
    userService.save(user);
}

#Update method PATCH

{
    "id": 1, // this is important. Widly important
    "username": "jhon.doe",
    "displayName": "Jhon",
    "password": "xxxyyyzzz",
    "email": "jhon.doe@mail.com"
}

@PatchMapping("/user")
public void patchUser(@RequestBody User user) {
    userService.save(user);
}

Maybe you're wondering where the id's come from. It comes from the database of course, you want to update the existing data right?


W
Waize

You can see the example below:

private void updateDeliveryStatusOfEvent(Integer eventId, int deliveryStatus) {
    try {
        LOGGER.info("NOTIFICATION_EVENT updating with event id:{}", eventId);
        Optional<Event> eventOptional = eventRepository.findById(eventId);
        if (!eventOptional.isPresent()) {
            LOGGER.info("Didn't find any updatable notification event with this eventId:{}", eventId);
        }
        Event event = eventOptional.get();
        event.setDeliveryStatus(deliveryStatus);
        event = eventRepository.save(event);
        if (!Objects.isNull(event)) {
            LOGGER.info("NOTIFICATION_EVENT Successfully Updated with this id:{}", eventId);
        }
    } catch (Exception e) {
        LOGGER.error("Error :{} while updating NOTIFICATION_EVENT of event Id:{}", e, eventId);
    }
}

Or Update Using Native Query:

public interface YourRepositoryName extends JpaRepository<Event,Integer>{
@Transactional
    @Modifying
    @Query(value="update Event u set u.deliveryStatus = :deliveryStatus where u.eventId = :eventId", nativeQuery = true)
    void setUserInfoById(@Param("deliveryStatus")String deliveryStatus, @Param("eventId")Integer eventId);
}

T
Tarek Sahalia

Use @DynamicUpdate annotation. it is cleaner and you don't have to deal with querying the database in order to get the saved values.


Would be much helpful if you add a simple example here.