Spring Data JPA 之 原生SQL使用

spring data jpa 提供了強(qiáng)大的接口,一般情況下,接口默認(rèn)提供的方法即可滿足查詢需求突委,但是一些特定場合我們還是需要使用自定義SQL查詢敌蚜。

1.表定義

@Table(name = "student")
@Entity
@Data
public class Student {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private Integer id;

    @NotNull
    @Column(length = 128)
    private String name;

    @NotNull
    @Column(length = 128)
    private String idNo;

    @NotNull
    private Integer age;

    @NotNull
    @Column(length = 8)
    private String gender;

}

2. jpa自定義接口定義

此處定義了一個(gè)參數(shù)的自定義sql查詢纷跛,age的數(shù)值作為參數(shù)進(jìn)行查詢

import com.example.jpademo.entity.Student;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;

import java.util.List;

public interface StudentRepository extends JpaRepository<Student, Integer> {

    @Query(value = "select * from student where age >= ?1", nativeQuery=true)
    List<Student> findCondQuery(Integer age);

}

3. pojo對象定義

3.1 studentDTO定義

package com.example.jpademo.pojo;

import lombok.Data;

@Data
public class StudentQueryDTO {
    
    Integer age;

}

3.2 studentVO定義

package com.example.jpademo.pojo;

import lombok.Data;

import javax.persistence.Column;
import javax.validation.constraints.NotNull;

@Data
public class StudentVO {

    @NotNull
    @Column(length = 128)
    private String name;

    @NotNull
    @Column(length = 128)
    private String idNo;

    @NotNull
    private Integer age;

    @NotNull
    @Column(length = 8)
    private String gender;

}

4. 服務(wù)定義

4.1 服務(wù)接口

package com.example.jpademo.service;

import com.example.jpademo.pojo.StudentQueryDTO;
import com.example.jpademo.pojo.StudentVO;
import com.example.jpademo.web.advice.RestResponse;

public interface StudentService {

    RestResponse nativeQuery(StudentQueryDTO studentQueryDTO);

    RestResponse add(StudentVO studentVO);

}

4.2 服務(wù)實(shí)現(xiàn)

package com.example.jpademo.service.impl;

import com.example.jpademo.entity.Student;
import com.example.jpademo.pojo.StudentQueryDTO;
import com.example.jpademo.pojo.StudentVO;
import com.example.jpademo.repository.StudentRepository;
import com.example.jpademo.service.StudentService;
import com.example.jpademo.web.advice.RestResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;

@Service
@Transactional(rollbackFor = {Exception.class})
public class StudentServiceImpl implements StudentService {

    @Autowired
    private StudentRepository studentRepository;

    @Override
    public RestResponse nativeQuery(StudentQueryDTO studentQueryDTO){

        List<Student> studentList;
        Integer age = studentQueryDTO.getAge();
        try {
            studentList = this.studentRepository.findCondQuery(age);
        }
        catch (Exception e){
            throw e;
        }
        return new RestResponse(HttpStatus.OK.value(), "succ", studentList);
    }

    @Override
    public RestResponse add(StudentVO studentVO)
    {
        Student student = new Student();
        student.setAge(studentVO.getAge());
        student.setGender(studentVO.getGender());
        student.setIdNo(studentVO.getIdNo());
        student.setName(studentVO.getName());
        this.studentRepository.save(student);
        return new RestResponse(HttpStatus.OK.value(), "succ", student);
    }
}

5. 單元測試

測試下自定義查詢SQL的接口

package com.example.jpademo;

import com.example.jpademo.pojo.StudentQueryDTO;
import com.example.jpademo.pojo.StudentVO;
import com.example.jpademo.repository.StudentRepository;
import com.example.jpademo.service.StudentService;
import com.example.jpademo.web.advice.RestResponse;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;


@RunWith(SpringRunner.class)
@SpringBootTest
public class JpademoApplicationTests {

    @Autowired
    private StudentRepository studentRepository;

    @Autowired
    private StudentService studentService;

//    @Test
//    public void contextLoads() {
//    }

    @Test
    public void testStudentServiceNativeQuery1(){

        StudentVO studentVO = new StudentVO();
        studentVO.setAge(17);
        studentVO.setGender("male");
        studentVO.setIdNo("001");
        studentVO.setName("jack");
        this.studentService.add(studentVO);

        StudentQueryDTO studentQueryDTO = new StudentQueryDTO();
        studentQueryDTO.setAge(17);
        RestResponse restResponse = this.studentService.nativeQuery(studentQueryDTO);
        Assert.assertNotEquals(null, restResponse.getData());
    }

    @Test
    public void testStudentServiceNativeQuery2(){

        StudentVO studentVO = new StudentVO();
        studentVO.setAge(15);
        studentVO.setGender("male");
        studentVO.setIdNo("001");
        studentVO.setName("jack");
        this.studentService.add(studentVO);

        StudentQueryDTO studentQueryDTO = new StudentQueryDTO();
        studentQueryDTO.setAge(16);
        RestResponse restResponse = this.studentService.nativeQuery(studentQueryDTO);
        Assert.assertNotEquals(null, restResponse.getData());
    }

}

6. 總結(jié)

總的來說絕大多數(shù)的單表?xiàng)l件查詢,都可以用JPA接口非常方便的表述出來,但是有些場景下如果需要自定義語句与倡,則可以按照本文的方式進(jìn)行自定義SQL接口查詢净响。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末掸掸,一起剝皮案震驚了整個(gè)濱河市仁讨,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌曙咽,老刑警劉巖鱼蝉,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绞灼,死亡現(xiàn)場離奇詭異,居然都是意外死亡姆打,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進(jìn)店門陆馁,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事互婿。” “怎么了驮配?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我牺陶,道長狮鸭,這世上最難降的妖魔是什么酗昼? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任抡笼,我火速辦了婚禮藏古,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘忍燥。我一直安慰自己拧晕,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布梅垄。 她就那樣靜靜地躺著厂捞,像睡著了一般。 火紅的嫁衣襯著肌膚如雪队丝。 梳的紋絲不亂的頭發(fā)上蔫敲,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天,我揣著相機(jī)與錄音炭玫,去河邊找鬼。 笑死貌虾,一個(gè)胖子當(dāng)著我的面吹牛吞加,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播尽狠,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼衔憨,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了袄膏?” 一聲冷哼從身側(cè)響起践图,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎沉馆,沒想到半個(gè)月后码党,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡斥黑,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年揖盘,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片锌奴。...
    茶點(diǎn)故事閱讀 38,724評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡兽狭,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情箕慧,我是刑警寧澤服球,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站颠焦,受9級特大地震影響斩熊,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蒸健,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一座享、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧似忧,春花似錦渣叛、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至饺著,卻和暖如春箫攀,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背幼衰。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工靴跛, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人渡嚣。 一個(gè)月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓梢睛,卻偏偏與公主長得像,于是被迫代替她去往敵國和親识椰。 傳聞我的和親對象是個(gè)殘疾皇子绝葡,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評論 2 350

推薦閱讀更多精彩內(nèi)容