今天給大家介紹一下SpringBoot中JPA的一些常用操作,例如:增刪改查、分頁、排序、事務(wù)操作等功能。
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比泰順網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式泰順網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋泰順地區(qū)。費用合理售后完善,十載實體公司更值得信賴。
下面先來介紹一下JPA中一些常用的查詢操作:
//And --- 等價于 SQL 中的 and 關(guān)鍵字,比如 findByHeightAndSex(int height,char sex); public ListfindByHeightAndSex(int height,char sex); // Or --- 等價于 SQL 中的 or 關(guān)鍵字,比如 findByHeightOrSex(int height,char sex); public List findByHeightOrSex(int height,char sex); //Between --- 等價于 SQL 中的 between 關(guān)鍵字,比如 findByHeightBetween(int min, int max); public List findByHeightBetween(int min,int max); //LessThan --- 等價于 SQL 中的 "<",比如 findByHeightLessThan(int max); public List findByHeightLessThan(int max); //GreaterThan --- 等價于 SQL 中的">",比如 findByHeightGreaterThan(int min); public List findByHeightGreaterThan(int min); //IsNull --- 等價于 SQL 中的 "is null",比如 findByNameIsNull(); public List findByNameIsNull(); //IsNotNull --- 等價于 SQL 中的 "is not null",比如 findByNameIsNotNull(); public List findByNameIsNotNull(); //NotNull --- 與 IsNotNull 等價; public List findByNameNotNull(); //Like --- 等價于 SQL 中的 "like",比如 findByNameLike(String name); public List findByNameLike(String name); //NotLike --- 等價于 SQL 中的 "not like",比如 findByNameNotLike(String name); public List findByNameNotLike(String name); //OrderBy --- 等價于 SQL 中的 "order by",比如 findByNameNotNullOrderByHeightAsc(); public List findByNameNotNullOrderByHeightAsc(); //Not --- 等價于 SQL 中的 "! =",比如 findByNameNot(String name); public List findByNameNot(String name); //In --- 等價于 SQL 中的 "in",比如 findByNameIN(String name); public List findByNameIn(String name); //NotIn --- 等價于 SQL 中的 "not in",比如 findByNameNotIN(String name); public List findByNameNotIn(String name);
JPA中的風(fēng)格就是這樣,每個方法其實都是一條SQl命令,通過一些關(guān)鍵字就可以實現(xiàn)SQL中類似于like in等等之類的命令了。
最重要的是我們再開發(fā)的過程中,只需要編寫dao中一個個方法,不需要我們編寫dao的實現(xiàn)類,這樣就可以大大的挺高代碼的復(fù)用率、提高我們的開發(fā)效率。
說道這里不免會有人會問,那一些比較復(fù)雜的關(guān)聯(lián)查詢要怎么實現(xiàn)呢,JPA的處理方法是:利用原生的SQl命令來實現(xiàn)那些復(fù)雜的關(guān)聯(lián)查詢,下面就來看下案例。
//利用原生的SQL進行查詢操作 @Query(value = "select o.* from orders o ,user u where o.uid=u.id and u.name=?1", nativeQuery = true) @Modifying public ListfindOrderByName(String name); //利用原生的SQL進行刪除操作 @Query(value = "delete from orders where id=?1 ", nativeQuery = true) @Modifying public void deleteOrderById(int id); //利用原生的SQL進行刪除操作 @Query(value = "delete from orders where uid=?1 ", nativeQuery = true) @Modifying public void deleteOrderByUId(int uid); //利用原生的SQL進行修改操作 @Query(value = "update orders set name=?1 where id=?2 ", nativeQuery = true) @Modifying public void updateOrderName(String name,int id); //利用原生的SQL進行插入操作 @Query(value = "insert into orders(name,uid) value(?1,?2)", nativeQuery = true) @Modifying public void insertOrder(String name,int uid);
上面的案例中給出了,利用JPA實現(xiàn)原生的SQL操作,可以很方便的進行數(shù)據(jù)庫表的操作。
所以如果是那種查詢語句不是非常復(fù)雜,對查詢時間要求不是特別苛刻的項目,完全可以采用JPA來進行項目的開發(fā)。
下面接著來介紹JPA是怎么實現(xiàn)分頁的效果,其實JPA脫胎于hibernate,所以本身就對分頁功能有很好的支持。下面給出具體例子:
//實現(xiàn)分頁功能 PagefindByNameNot(String name,Pageable pageable);
@RequestMapping(value = "/params", method= RequestMethod.GET) @ResponseBody public String getEntryByParams(@RequestParam(value = "name", defaultValue = "林志強") String name, @RequestParam(value = "page", defaultValue = "0") Integer page, @RequestParam(value = "size", defaultValue = "15") Integer size) { Sort sort = new Sort(Sort.Direction.DESC, "id"); Pageable pageable = new PageRequest(page, size, sort); Pagepages=userDao.findByNameNot(name,pageable); Iterator it=pages.iterator(); while(it.hasNext()){ System.out.println("value:"+((User)it.next()).getId()); } return "success...login...."; }
上面的代碼一個是在dao層中的,一個是在controller中的。
dao層中添加一個返回值為Page,參數(shù)值為Pageable。controller層中通過實例化Pageable這個類,然后調(diào)用dao層這個分頁方法。
通過這些步驟就可以輕輕松松的實現(xiàn)分頁的效果啦,看起來是不是特別方便。
最后在給大家介紹一下JPA是如何實現(xiàn)事務(wù)操作的。其實因為SpringBoot中已經(jīng)對事務(wù)做了很好的封裝了,使用起來特別方便。下面看一下案例:
@RequestMapping("/saveOrder") @ResponseBody @Transactional() public String saveOrder(){ Order o1=new Order("11",2); Order o2=new Order("22",2); Order o3=new Order("33",2); Order o4=new Order("44",2); orderDao.save(o1); orderDao.save(o2); orderDao.save(o3); orderDao.save(o4); return "successfull....saveOrder......"; }
只要在方法的上面加上@Transaction 這個注解就可以輕輕松松的實現(xiàn)事務(wù)的操作了,是不是特別方便啊。
不過這里有幾點需要注意的是:
1.這個注解實現(xiàn)的事務(wù)管理器是默認的,如果不想要默認是事務(wù)管理器,可以自己進行添加,我這里就不多介紹了。
2.事務(wù)的隔離級別也是可以自己設(shè)置的。
3.事務(wù)的傳播行為也是可以自己設(shè)置的。
到此到此關(guān)于JPA的一些常規(guī)方法就介紹完了,謝謝大家的閱讀。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。