About 1,450,000 results
Open links in new tab
  1. Why do we have to use @Modifying annotation for queries in …

    CAUTION! Using @Modifying(clearAutomatically=true) will drop any pending updates on the managed entities in the persistence context spring states the following : Doing so triggers the …

  2. java - Why do I have to use @Modifying with @Transactional in …

    Feb 21, 2020 · Whenever implementing data modifying logic using Query annotation (insert, update or delete) in JpaRepository, both @Transactional (not necessarily on the repository …

  3. java - Is there any use for Spring Data JPA's @Modifying without ...

    Jan 15, 2021 · AFAIK @Modifying is there to take care of persistence context cleanup in case of INSERT/UPDATE/DELETE queries specified in @Query annotation. But what is pure …

  4. java - Do we need both @Transactional and @Modifying …

    Jan 18, 2018 · Yes you need @Transactional when modifying data even with @Modifying that is only an annotation to let Spring Data know you have a @Query that changes stuff. The …

  5. Can a C program modify its executable file? - Stack Overflow

    Yes, you can modify your own executable file. What you're asking about is modifying the running program.

  6. spring-data-jpa to insert using @Query & @Modifying without …

    Aug 18, 2017 · -1 @Query Usually used to Create custom User Query to fetch the value from Data Base @Query with @Modifying used to perform the update operation in database save …

  7. Spring Data JPA Update @Query not updating? - Stack Overflow

    This may be done by calling EntityManager.detach, annotating the updating method with @Modifying(clearAutomatically = true) which evicts all entities. Make sure changes to these …

  8. How can I change a global variable from within a function?

    4 You're modifying a variable a created in the scope of the function test(). If you want the outer a to be modified, you could do:

  9. Update via @Modifying @Query in Spring Data not working

    Jan 27, 2015 · Update via @Modifying @Query in Spring Data not working Asked 10 years, 10 months ago Modified 3 years, 1 month ago Viewed 8k times

  10. @Modifying annotation in the latest Spring Data JPA versions?

    Jun 29, 2022 · Now, could you pls clarify me about the following issues? 1. Should we still need to use @Modifying Annotation in the last version (s) of Spring Data JPA? If so, could you explain …