spring data jpa 原生查詢(查一個json中的某一字段)


數據庫:

 

 

jpa 查詢 java:

 1 @Component("ediHistoryDAO")
 2 public interface EdiHistoryDAO extends CrudRepository<EdiHistoryDO, Integer>{
 3 
 4     EdiHistoryDO findById(BigInteger id);
 5     
 6     EdiHistoryDO findByEdiInfoId(BigInteger id);
 7     
 8     List<EdiHistoryDO> findByIdIn(List<BigInteger> id);
 9     
10     @Query(value="select * from EDI.edi_history  where json_contains(response_summary, ?1) and json_contains(response_summary, ?2)  and json_contains(response_summary, ?3)  and json_contains(response_summary, ?4)", nativeQuery = true)
11     public List<EdiHistoryDO> findByResponseSummary(String result,String orderNo,String orderId,String docType);
12 }
View Code

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM