您好,登錄后才能下訂單哦!
本篇內容介紹了“springboot中JPA的應用方法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
一開始使用自動生成實體類工具有JPA和mybatis-gernertor這兩種方式來自動生成實體類的方式,今天先介紹第一種使用jpa
1.在所在項目下添加JPA,點擊File->Project Sructure->Modules 點擊紅色框框中的加號,
2.點擊idea界面左上角View->Tool Windows->Persistence
1,日常我們工具都是使用的IDEA的方式,所以今天以IDEA為例說明。在IDEA中連接datebase,
2.鏈接上數據庫地址
3.選擇連接上自己創建的數據庫
1,點擊剛剛新建的JPA選項
2.選擇已經連接上的數據庫地址,則會出現對應的地址值,Packge是對應包名,可以自己在項目中創建,點擊對應表可以創建對應的表,
3.下面為創建成果狀態
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一樣調用
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的應用方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。