91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot中JPA的應用方法

發布時間:2021-06-18 16:41:45 來源:億速云 閱讀:210 作者:chen 欄目:編程語言

本篇內容介紹了“springboot中JPA的應用方法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

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

自動生成實體類

項目中添加JPA

1.在所在項目下添加JPA,點擊File->Project Sructure->Modules 點擊紅色框框中的加號,
springboot中JPA的應用方法
2.點擊idea界面左上角View->Tool Windows->Persistence

springboot中JPA的應用方法

在IDEA中連接上數據庫

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

利用IDEA生成Entity

1,點擊剛剛新建的JPA選項
springboot中JPA的應用方法

2.選擇已經連接上的數據庫地址,則會出現對應的地址值,Packge是對應包名,可以自己在項目中創建,點擊對應表可以創建對應的表,
springboot中JPA的應用方法
3.下面為創建成果狀態
springboot中JPA的應用方法

JPA實踐使用

1.創建一個springbot項目。

        <!-- 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.創建啟動類

/**
 * @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.創建一個Repository,即可像Mapper一樣調用
springboot中JPA的應用方法

4.下面是測試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的應用方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屯留县| 浦城县| 湖口县| 松江区| 清丰县| 阿城市| 深水埗区| 翁源县| 江西省| 腾冲县| 岳阳市| 三穗县| 榆树市| 咸阳市| 漠河县| 仁化县| 泾川县| 隆尧县| 潜江市| 阳春市| 孟州市| 上蔡县| 东平县| 姜堰市| 客服| 旬邑县| 武陟县| 昂仁县| 论坛| 中超| 托里县| 江油市| 衢州市| 松阳县| 姚安县| 宣汉县| 新民市| 崇信县| 朝阳市| 措美县| 五台县|