#425 - Fix lack of @Modifying in reference documentation code.

This commit is contained in:
Okue
2020-08-05 01:29:36 +09:00
committed by Mark Paluch
parent b0e03ea3a3
commit d3276b9d7e

View File

@@ -260,6 +260,7 @@ As this approach is feasible for comprehensive custom functionality, you can mod
====
[source,java]
----
@Modifying
@Query("UPDATE person SET firstname = :firstname where lastname = :lastname")
Mono<Integer> setFixedFirstnameFor(String firstname, String lastname);
----