中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決SpringDataJpa寫原生sql遇到的問題

發布時間:2021-11-22 12:35:05 來源:億速云 閱讀:242 作者:小新 欄目:開發技術

小編給大家分享一下如何解決SpringDataJpa寫原生sql遇到的問題,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

SpringDataJpa寫原生sql遇到的問題

@Repository
public interface EduCourseDao extends JpaRepository<EduCourse,Long>, JpaSpecificationExecutor<EduCourse> {
    //根據課程id查詢課程的確認信息
    @Query(value = "SELECT ec.id,ec.title,ec.price,ec.lesson_num, " +
            "ecd.description, " +
            "es1.title AS oneSubject, " +
            "es2.title AS twoSubject " +
            "FROM edu_course ec LEFT JOIN edu_course_description ecd ON ec.id=ecd.id " +
            "LEFT JOIN edu_teacher et ON ec.teacher_id=et.id " +
            "LEFT JOIN edu_subject es1 ON ec.subject_parent_id=es1.id " +
            "LEFT JOIN edu_subject es2 ON ec.subject_id=es2.id " +
            "WHERE ec.id=?1 ",nativeQuery = true)
    List< Map<String,Object>> findPublishInfoById(String id);

}

因為涉及到其他表,所以返回類型使用List< Map<String,Object>> ,而不是用原先定義的vo類

每行最后的,與 " 之間要有一個空格,不然報錯。

Spring data jpa 自定義SQL語句遇到錯誤

Not supported for DML operations

今天在自定義一個Update語句時運行遇到一個錯誤,顯示Not supported for DML operations 也就是說不支持DML操作。

我的UserRepository是繼承的PagingAndSortingRepository接口,在看了JPA的文檔之后,發現此接口不支持update事務,所以需要在注解上添加@Modifying。

原文如下:

3.3.7. Modifying queries

All the sections above describe how to declare queries to access a given entity or collection of entities.Of course you can add custom modifying behaviour by using facilities described in Customimplementations for Spring Data repositories. As this approach is feasible for comprehensive customfunctionality, you can achieve the execution of modifying queries that actually only need parameterbinding by annotating the query method with @Modifying:

Example 45. Declaring manipulating queries

@Modifying
@Query("update User u set u.firstname = ?1 where u.lastname = ?2")
int setFixedFirstnameFor(String firstname, String lastname);
This will trigger the query annotated to the method as updating query instead of a selecting one. As theEntityManager might contain outdated entities after the execution of the modifying query, we do notautomatically clear it (see JavaDoc of EntityManager.clear() for details) since this will effectively dropall non-flushed changes still pending in the EntityManager. If you wish the EntityManager to be clearedautomatically you can set @Modifying annotation's clearAutomatically attribute to true.

以下是我的源碼:

@Modifying
@Query("update User u set u.u_name=?2,u.u_sex=?3,u.u_date = ?4,u.u_minzu = ?5,u.u_area=?6,u.u_country=?7 where u.u_id =?1")
public void updateUserById(String u_id,String u_name,String u_sex,
                               String u_date, String u_minzu,String u_area,
                               String u_country);

以上是“如何解決SpringDataJpa寫原生sql遇到的問題”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蛟河市| 肇东市| 都江堰市| 巴彦县| 静宁县| 和顺县| 荔浦县| 永康市| 奉贤区| 上虞市| 广德县| 乌拉特中旗| 九龙城区| 衡阳县| 祁门县| 凌海市| 翁牛特旗| 礼泉县| 灵宝市| 平安县| 曲阳县| 西乌珠穆沁旗| 博爱县| 栾川县| 色达县| 华蓥市| 东宁县| 江永县| 南皮县| 伊金霍洛旗| 达拉特旗| 郴州市| 庆元县| 扶风县| 石狮市| 宾阳县| 芦溪县| 张家界市| 安达市| 浮山县| 岳阳县|