例如下面這段程式碼
@Query("update BbsPost b set b.content = ?2,b.updateTime = current_timestamp where b.id = ?1")
@Modifying
void updatePostContent(Integer id, String content);
其中id 和 content 是物件Book的屬性,我可以把入參定義成Book麼,就像是
void updatePostContent(Book book);
如果可以,我的更新sql 如何寫?
目前修改操作是不可以的,只有查詢可以使用SPEL表達式。
官方範例:https://spring.io/blog/2014/0...