zoukankan      html  css  js  c++  java
  • 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

     

  • 相关阅读:
    ES6(二)
    ES6
    bootstrap
    数组对象
    bootstrap
    html5(二)
    css3转换、动画、布局
    整理的一些兼容写法
    css渐变、背景、过渡、分页
    css3(一)
  • 原文地址:https://www.cnblogs.com/lshan/p/9089476.html
Copyright © 2011-2022 走看看