溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

springboot中JPA的應(yīng)用方法

發(fā)布時(shí)間:2021-06-18 16:41:45 來源:億速云 閱讀:209 作者:chen 欄目:編程語言

本篇內(nèi)容介紹了“springboot中JPA的應(yīng)用方法”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

一開始使用自動(dòng)生成實(shí)體類工具有JPA和mybatis-gernertor這兩種方式來自動(dòng)生成實(shí)體類的方式,今天先介紹第一種使用jpa

自動(dòng)生成實(shí)體類

項(xiàng)目中添加JPA

1.在所在項(xiàng)目下添加JPA,點(diǎn)擊File->Project Sructure->Modules 點(diǎn)擊紅色框框中的加號(hào),
springboot中JPA的應(yīng)用方法
2.點(diǎn)擊idea界面左上角View->Tool Windows->Persistence

springboot中JPA的應(yīng)用方法

在IDEA中連接上數(shù)據(jù)庫

1,日常我們工具都是使用的IDEA的方式,所以今天以IDEA為例說明。在IDEA中連接datebase,
springboot中JPA的應(yīng)用方法
2.鏈接上數(shù)據(jù)庫地址
springboot中JPA的應(yīng)用方法
3.選擇連接上自己創(chuàng)建的數(shù)據(jù)庫
springboot中JPA的應(yīng)用方法

利用IDEA生成Entity

1,點(diǎn)擊剛剛新建的JPA選項(xiàng)
springboot中JPA的應(yīng)用方法

2.選擇已經(jīng)連接上的數(shù)據(jù)庫地址,則會(huì)出現(xiàn)對(duì)應(yīng)的地址值,Packge是對(duì)應(yīng)包名,可以自己在項(xiàng)目中創(chuàng)建,點(diǎn)擊對(duì)應(yīng)表可以創(chuàng)建對(duì)應(yīng)的表,
springboot中JPA的應(yīng)用方法
3.下面為創(chuàng)建成果狀態(tài)
springboot中JPA的應(yīng)用方法

JPA實(shí)踐使用

1.創(chuàng)建一個(gè)springbot項(xiàng)目。

        <!-- SpringBoot Web容器 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>



        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
            <version>2.0.4.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.12</version>
        </dependency>

2.創(chuàng)建啟動(dòng)類

/**
 * @program: gitee-space
 * @Author felixwang
 * @Date on 2021/5/19  18:22
 * @Https https:felixwang.site
 * @QQ 2115376870
 * @Description
 */
@SpringBootApplication
public class AppAplication {
    public static void main(String[] args) {
        SpringApplication.run(AppAplication.class,args);
    }
}

3.創(chuàng)建一個(gè)Repository,即可像Mapper一樣調(diào)用
springboot中JPA的應(yīng)用方法

4.下面是測(cè)試controller

/**
 * @program: gitee-space
 * @Author felixwang
 * @Date on 2021/5/20  17:08
 * @Https https:felixwang.site
 * @QQ 2115376870
 * @Description
 */
@RestController
public class TestOne {

    @Autowired
    private Company0EntityService company0EntityService;

    @GetMapping("/test1")
    public String testJpa(){
        return company0EntityService.getAll().toString();
    }

    @GetMapping("test2")
    public ResponseEntity test1(@NotBlank(message = "不能為空") @RequestParam Long redUserId){
        return  ResponseEntity.ok(company0EntityService.findNameByRefUserId(redUserId));
    }
}

“springboot中JPA的應(yīng)用方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI