SpringBoot Jpaカスタムクエリー

662 ワード

SpringBoot Jpaカスタムクエリー
永続層Domain
public interface BaomingDao extends JpaRepository {
    
    @Query(value = "select distinct t.actid from BaomingBean t where t.belongs=?1")
    List findDistinctActid(String belongs);
    //   SQL     belongs     actid     from +      (   ) actid   belongs   Bean    ,        
}

コントローラの書き方
@RequestMapping(value = "*")
public List findDistinctSwiperName(@RequestParam("belongs") String belongs){
     return baomingDao.findDistinctActid(belongs);
}

各种の开発が必要なQQ 1025584691に连络してください