初次接觸Spring的時候,我感受這是一個很難接觸的框架,由於其龐雜的配置文件,我最不喜歡的就是xml文件,這種文件的可讀性很很差。因此好久以來個人Spring學習都是出於停滯狀態的。java
不過這種狀態在我接觸了Spring Boot以後,就發生了改變。Spring官方可能也以爲龐雜的配置是一件很不優雅的事情,雖然加入了包掃描,可是也沒有觸及靈魂。程序員
Spring還有一個問題就是依賴的衝突問題,這個對我這種半道出家的程序員來講更是痛苦至極。web
還好,全部的痛苦都被Spring Boot終結了。spring
Spring Boot有三個特色:sql
每個特色都那麼的美好。數據庫
其實開發人員的本職工做是什麼?是完成業務代碼的編寫,實現業務功能,所以若是消耗大量時間在Spring自己的配置和依賴衝突解決上,那麼等因而浪費了大量的時間。瀏覽器
Spring Boot的出現,能夠說是對生產力的一次解放。app
閒話少敘,看一個需求。框架
我如今想要寫一個工具,鏈接數據庫,實現增刪改查功能,恐怕不少程序員會回憶起最初學習Java的時候,那堪稱ugly的JDBC模板代碼了吧。我自己是一個DBA,由於公司安排,寫過不少JDBC代碼,深入的感受到這種代碼實在浪費時間,後來接觸了JPA框架,感受很是好。下面就用Spring Boot來實現一個數據庫的增刪改查功能。tcp
數據庫我會使用H2,這種嵌入式的數據庫最適合在家學習的時候使用,很小,支持最基本的數據庫操做,只要不涉及到太深入的內容,感受和MySQL差很少。至於如何在本機上啓動一個H2 Server,就不在這裏描述了。
首先呢,打開IDEA,遵循下面的順序:
new Project ->Spring Initializr ->填寫group、artifact ->鉤上web(開啓web功能)->點下一步就好了。
上圖是我選擇的須要的組件。
既然是JPA,那麼咱們首先要定義一個Entity,個人表叫作Demo,那麼Entity也就是叫作Demo:
package com.example.springwithjdbc.entity; import lombok.Data; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity @Data public class Demo { @Id @GeneratedValue private int id; private String uname; }
註解解釋:
接下來,須要經典的DAO層出現了:
package com.example.springwithjdbc.dao; import com.example.springwithjdbc.entity.Demo; import org.springframework.data.jpa.repository.JpaRepository; public interface DemoDao extends JpaRepository<Demo, Integer> { }
DAO層只是定義了一個interface,沒有進行任何實現,其實也不須要進行任何具體的實現,注意繼承的JpaRepository,它幫咱們作了不少須要咱們原先手動編碼的工做。
接下來就是經典的Service層了,Service即業務層:
package com.example.springwithjdbc.service; import com.example.springwithjdbc.entity.Demo; import java.util.List; public interface IDemoService { Demo add(Demo demo); Demo findById(int id); List<Demo> findAll(); }
以上代碼是service的接口,接下來編寫具體的實現:
package com.example.springwithjdbc.service; import com.example.springwithjdbc.dao.DemoDao; import com.example.springwithjdbc.entity.Demo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class DemoService implements IDemoService { @Autowired private DemoDao demoDao; @Override public Demo add(Demo demo) { return demoDao.save(demo); } @Override public Demo findById(int id) { return demoDao.findById(id).get(); } @Override public List<Demo> findAll() { return demoDao.findAll(); } }
註解解釋:
@Service:表示這是一個Service;
@Autowired:將DemoDao注入。
接下來,咱們須要一個Controller來實現REST接口:
package com.example.springwithjdbc.controller; import com.example.springwithjdbc.entity.Demo; import com.example.springwithjdbc.service.IDemoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.List; @RestController @RequestMapping("/") public class DemoRestController { @Autowired IDemoService demoService; @PostMapping("/save") public String save(@RequestParam(name = "name")String name) { Demo demo = new Demo(); demo.setUname(name); return demoService.add(demo).toString(); } @GetMapping("/find") public String findById(@RequestParam(name = "id")int id) { return demoService.findById(id).toString(); } @GetMapping("/list") public String findAll() { List<Demo> demoList = demoService.findAll(); return demoList.toString(); } }
最後,配置application.yml,配置數據源:
spring: datasource: url: jdbc:h2:tcp://localhost/~/code/h2/bin/demo username: admin password: admin jpa: show-sql: true
啓動這個工程便可,接下來就能夠用瀏覽器或者postman進行測試了,這是我用postman進行的測試,首先發送一個POST請求,寫入一條數據:
下面咱們查詢這條數據:
多寫幾條數據之後,調用list接口:
到這裏,咱們已經成功的編寫了一段基於Spring Boot的JPA代碼,實現了簡單的新增和查詢功能。比我以前寫的JDBC代碼不知道簡單到哪裏去了,並且也更加的優雅了,再也沒有那麼多複雜的讓人難以看懂的xml配置了。
Spring甚至貼心到作了一個網站專門生成工程骨架。
我最近在學習微服務,要學習微服務繞不開的就是Spring Cloud,而Spring Cloud離不開Spring Boot。所以首先了解Spring Boot是頗有必要的。
這是個人筆記整理出來的第一篇,但願可以幫助到其餘和我同樣在學習微服務,學習Spring Cloud,學習Spring Boot的人。