第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

CrudRepository 中的自定義 SQL 查詢(xún)

CrudRepository 中的自定義 SQL 查詢(xún)

侃侃爾雅 2023-09-20 15:53:08
我正在嘗試在擴(kuò)展 CrudRepository 的存儲(chǔ)庫(kù)中執(zhí)行一些 SQL 查詢(xún)。我在控制器中有以下代碼:@CrossOrigin(origins = "*")    @GetMapping(path="/all")    public @ResponseBody List<UserProjection> getAllRequestResponseRecords() {        return userRequestResponseRepository.findAllProjectedBy() ;    }DAO代碼如下:public interface UserRequestResponseRepository extends CrudRepository<UserRequestResponse, Integer> {    //public static final String FIND_QUERY = "select user.u_httpstatus ,user.u_queryparam from UserRequestResponse user";    public static final String FIND_QUERY =     "select new com.abc.datacollection.entity.UserRequestResponse(user.u_httpstatus ,user.u_queryparam) from UserRequestResponse user";    @Query(value = FIND_QUERY)    //public List<UserProjection> getAllRequestResponseRecords();     List<UserProjection> findAllProjectedBy();}班級(jí)是:import java.sql.Date;import javax.persistence.Entity;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id;@Entity // This tells Hibernate to make a table out of this classpublic class UserRequestResponse {    @Id    @GeneratedValue(strategy = GenerationType.IDENTITY)    private String u_httpstatus;    private String u_error_message;    private String u_queryparam;    public UserRequestResponse(String u_httpstatus, String u_queryparam) {        this.u_httpstatus = u_httpstatus;        this.u_queryparam = u_queryparam;    }    public String getU_httpstatus() {        return u_httpstatus;    }    public void setU_httpstatus(String u_httpstatus) {        this.u_httpstatus = u_httpstatus;    }    public String getU_error_message() {        return u_error_message;    }    public void setU_error_message(String u_error_message) {        this.u_error_message = u_error_message;    }我對(duì)如何添加像這樣的查詢(xún)感到困惑:select u_type,count(u_type) from u_user_click_data group by u_type如何更改投影以及其他必要的更改是什么?
查看完整描述

1 回答

?
DIEA

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超3個(gè)贊

您可以將 DAO 更改為以下內(nèi)容,這應(yīng)該可以工作。


public interface UserRequestResponseRepository extends CrudRepository<UserRequestResponse, Integer> {

public static final String FIND_QUERY =?

"select new com.abc.datacollection.entity.UserRequestResponse(user.u_httpstatus ,user.u_queryparam, COUNT(user.u_type)) from UserRequestResponse user GROUP BY user.u_type";

@Query(value = FIND_QUERY)

//public List<UserProjection> getAllRequestResponseRecords();

?List<UserProjection> findAllProjectedBy();

}


確保 Bean 類(lèi)構(gòu)造函數(shù)應(yīng)該具有傳遞參數(shù)。



查看完整回答
反對(duì) 回復(fù) 2023-09-20
  • 1 回答
  • 0 關(guān)注
  • 99 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)