对于 Spring Data JPA 使用的时间不长,只有两年时间。但是踩过坑的却不少。
使用下列代码@Modifying @Query("update User u set u.firstname = ?1 where u.lastname = ?2") int setFixedFirstnameFor(String firstname, String lastname);
首先让人奇怪的是,repository method只能返回int或者转为void,因为这个操作只会把数据写入到数据库,但是不会select。
执行完modifying query, EntityManager可能会包含过时的数据,因为EntityManager不会自动清除实体。 只有添加clearAutomatically属性,EntityManager才会自动清除实体对象。@Modifying(clearAutomatically = true) @Query("update RssFeedEntry feedEntry set feedEntry.read =:isRead where feedEntry.id =:entryId") void markEntryAsRead(@Param("entryId") Long rssFeedEntryId, @Param("isRead") boolean isRead);