@Modifying注解 什么时候使用 当自己增加的sql语句需要更改数据库时,经常和@Query一起使用。 例如: /** * 更改主题的id * @param themeID */ @Query(value="update project set themeID = ?1 where id = ?2", nativeQuery=true) @Modifying void updateThemeId(String themeID, String id);