您好,登錄后才能下訂單哦!
本篇內(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
1.在所在項(xiàng)目下添加JPA,點(diǎn)擊File->Project Sructure->Modules 點(diǎn)擊紅色框框中的加號(hào),
2.點(diǎn)擊idea界面左上角View->Tool Windows->Persistence
1,日常我們工具都是使用的IDEA的方式,所以今天以IDEA為例說明。在IDEA中連接datebase,
2.鏈接上數(shù)據(jù)庫地址
3.選擇連接上自己創(chuàng)建的數(shù)據(jù)庫
1,點(diǎn)擊剛剛新建的JPA選項(xià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)的表,
3.下面為創(chuàng)建成果狀態(tài)
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)用
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í)用文章!
免責(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)容。