Java Web系列:Spring Boot 基礎

来源:http://www.cnblogs.com/easygame/archive/2016/01/11/5122522.html
-Advertisement-
Play Games

Spring Boot 項目(參考1) 提供了一個類似ASP.NET MVC的預設模板一樣的標準樣板,直接集成了一系列的組件並使用了預設的配置。使用Spring Boot 不會降低學習成本,甚至增加了學習成本,但顯著降低了使用成本並提高了開發效率。如果沒有Spring基礎不建議直接上手。1.基礎項目...


Spring Boot 項目(參考1) 提供了一個類似ASP.NET MVC的預設模板一樣的標準樣板,直接集成了一系列的組件並使用了預設的配置。使用Spring Boot 不會降低學習成本,甚至增加了學習成本,但顯著降低了使用成本並提高了開發效率。如果沒有Spring基礎不建議直接上手。

1.基礎項目

這裡只關註基於Maven的項目構建,使用Spring Boot CLI命令行工具和Gradle構建方式請參考官網。

(1)創建項目:

創建類型為quickstart的Maven項目,刪除預設生成的.java文件保持預設的Maven目錄即可。

(2)修改/pom.xml

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 4     <modelVersion>4.0.0</modelVersion>
 5     <groupId>com.example</groupId>
 6     <artifactId>myproject</artifactId>
 7     <version>0.0.1-SNAPSHOT</version>
 8     <properties>
 9         <java.version>1.8</java.version>
10     </properties>
11     <parent>
12         <groupId>org.springframework.boot</groupId>
13         <artifactId>spring-boot-starter-parent</artifactId>
14         <version>1.3.1.RELEASE</version>
15     </parent>
16     <dependencies>
17         <dependency>
18             <groupId>org.springframework.boot</groupId>
19             <artifactId>spring-boot-starter-web</artifactId>
20         </dependency>
21     </dependencies>
22 </project>

(3)添加/src/main/sample/controller/HomeController.java文件:

 1 package simple.controller;
 2 
 3 import org.springframework.web.bind.annotation.*;
 4 
 5 @RestController
 6 public class HomeController {
 7 
 8     @RequestMapping("/")
 9     public String index() {
10         return "Hello World!";
11     }
12 }

(4)添加/src/main/sample/Application.java文件:

 1 package simple;
 2 
 3 import org.springframework.boot.*;
 4 import org.springframework.boot.autoconfigure.*;
 5 import simple.controller.*;
 6 
 7 @EnableAutoConfiguration
 8 public class Application {
 9 
10     public static void main(String[] args) throws Exception {
11         SpringApplication.run(new Object[] { Application.class, HomeController.class }, args);
12     }
13 
14 }

 

在瀏覽器中輸入http://localhost:8080/,即可直接看到"Hello World"運行結果

2. 添加數據訪問支持

(1)修改pom,添加spring-boot-starter-data-jpah2依賴:

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 4     <modelVersion>4.0.0</modelVersion>
 5     <groupId>com.example</groupId>
 6     <artifactId>myproject</artifactId>
 7     <version>0.0.1-SNAPSHOT</version>
 8     <properties>
 9         <java.version>1.8</java.version>
10     </properties>
11     <parent>
12         <groupId>org.springframework.boot</groupId>
13         <artifactId>spring-boot-starter-parent</artifactId>
14         <version>1.3.1.RELEASE</version>
15     </parent>
16     <dependencies>
17         <dependency>
18             <groupId>org.springframework.boot</groupId>
19             <artifactId>spring-boot-starter-web</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.springframework.boot</groupId>
23             <artifactId>spring-boot-starter-data-jpa</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>com.h2database</groupId>
27             <artifactId>h2</artifactId>
28             <scope>runtime</scope>
29         </dependency>
30     </dependencies>
31 </project>

如果需要在控制台查看生成SQL語句,可以添加/src/main/resources/application.properties

1 spring.h2.console.enabled=true
2 logging.level.org.hibernate.SQL=debug

(2)添加實體

添加User、Role、Category和Post實體。

User:

 1 package simple.domain;
 2 
 3 import java.util.*;
 4 
 5 import javax.persistence.*;
 6 
 7 @Entity
 8 public class User {
 9     @Id
10     @GeneratedValue
11     private Long id;
12 
13     private String userName;
14 
15     private String password;
16 
17     private String Email;
18 
19     @javax.persistence.Version
20     private Long Version;
21 
22     @ManyToMany(cascade = CascadeType.ALL)
23     private List<Role> roles = new ArrayList<Role>();
24 
25     public Long getId() {
26         return id;
27     }
28 
29     public void setId(Long id) {
30         this.id = id;
31     }
32 
33     public String getUserName() {
34         return userName;
35     }
36 
37     public void setUserName(String userName) {
38         this.userName = userName;
39     }
40 
41     public String getPassword() {
42         return password;
43     }
44 
45     public void setPassword(String password) {
46         this.password = password;
47     }
48 
49     public String getEmail() {
50         return Email;
51     }
52 
53     public void setEmail(String email) {
54         Email = email;
55     }
56 
57     public List<Role> getRoles() {
58         return roles;
59     }
60 
61     public void setRoles(List<Role> roles) {
62         this.roles = roles;
63     }
64 
65     public Long getVersion() {
66         return Version;
67     }
68 
69     public void setVersion(Long version) {
70         Version = version;
71     }
72 }
View Code

Role:

 1 package simple.domain;
 2 
 3 import java.util.*;
 4 
 5 import javax.persistence.*;
 6 
 7 @Entity
 8 public class Role {
 9     @Id
10     @GeneratedValue
11     private Long id;
12 
13     private String roleName;
14 
15     @ManyToMany(cascade = CascadeType.ALL)
16     private List<User> users = new ArrayList<User>();
17 
18     public Long getId() {
19         return id;
20     }
21 
22     public void setId(Long id) {
23         this.id = id;
24     }
25 
26     public String getRoleName() {
27         return roleName;
28     }
29 
30     public void setRoleName(String roleName) {
31         this.roleName = roleName;
32     }
33 
34     public List<User> getUsers() {
35         return users;
36     }
37 
38     public void setUsers(List<User> users) {
39         this.users = users;
40     }
41 }
View Code

Category:

 1 package simple.domain;
 2 
 3 import java.util.*;
 4 
 5 import javax.persistence.*;
 6 
 7 @Entity
 8 public class Category {
 9     @Id
10     @GeneratedValue
11     private Long id;
12 
13     private String Name;
14 
15     @OneToMany
16     private List<Post> posts = new ArrayList<Post>();
17 
18     public Long getId() {
19         return id;
20     }
21 
22     public void setId(Long id) {
23         this.id = id;
24     }
25 
26     public String getName() {
27         return Name;
28     }
29 
30     public void setName(String name) {
31         Name = name;
32     }
33 
34     public List<Post> getPosts() {
35         return posts;
36     }
37 
38     public void setPosts(List<Post> posts) {
39         this.posts = posts;
40     }
41 }
View Code

Post:

 1 package simple.domain;
 2 
 3 import java.util.*;
 4 
 5 import javax.persistence.*;
 6 
 7 @Entity
 8 public class Post {
 9     @Id
10     @GeneratedValue
11     private Long id;
12 
13     private String Name;
14 
15     private String Html;
16 
17     private String Text;
18 
19     private Date CreateAt;
20 
21     @ManyToOne
22     private Category category;
23 
24     public Long getId() {
25         return id;
26     }
27 
28     public void setId(Long id) {
29         this.id = id;
30     }
31 
32     public String getName() {
33         return Name;
34     }
35 
36     public void setName(String name) {
37         Name = name;
38     }
39 
40     public String getHtml() {
41         return Html;
42     }
43 
44     public void setHtml(String html) {
45         Html = html;
46     }
47 
48     public String getText() {
49         return Text;
50     }
51 
52     public void setText(String text) {
53         Text = text;
54     }
55 
56     public Date getCreateAt() {
57         return CreateAt;
58     }
59 
60     public void setCreateAt(Date createAt) {
61         CreateAt = createAt;
62     }
63 
64     public Category getCategory() {
65         return category;
66     }
67 
68     public void setCategory(Category category) {
69         this.category = category;
70     }
71 }
View Code

(3)添加資源庫

添加UserRepository、RoleRepository、CategoryRepository和PostRepository介面,無需實現。

UserRepository:

1 package simple.repository;
2 
3 import org.springframework.data.repository.*;
4 
5 import simple.domain.*;
6 
7 public interface UserRepository extends CrudRepository<User, Long> {
8 
9 }

RoleRepository

1 package simple.repository;
2 
3 import org.springframework.data.repository.*;
4 
5 import simple.domain.*;
6 
7 public interface RoleRepository extends CrudRepository<Role, Long> {
8 
9 }

CategoryRepository

1 package simple.repository;
2 
3 import org.springframework.data.repository.*;
4 
5 import simple.domain.*;
6 
7 public interface CategoryRepository extends CrudRepository<Category, Long> {
8 
9 }

PostRepository

package simple.repository;

import org.springframework.data.repository.*;

import simple.domain.*;

public interface PostRepository extends CrudRepository<User, Long> {

}

(4)在控制器中註入資源庫介面

 1 package simple.controller;
 2 
 3 import org.springframework.beans.factory.annotation.*;
 4 import org.springframework.web.bind.annotation.*;
 5 
 6 import simple.repository.*;
 7 
 8 @RestController
 9 public class HomeController {
10 
11     private UserRepository userRepository;
12     private RoleRepository roleRepository;
13     private CategoryRepository categoryRepository;
14     private PostRepository postReppository;
15 
16     @Autowired
17     public HomeController(UserRepository userRepository, RoleRepository roleRepository,
18             CategoryRepository categoryRepository, PostRepository postReppository) {
19         this.userRepository = userRepository;
20         this.roleRepository = roleRepository;
21         this.categoryRepository = categoryRepository;
22         this.postReppository = postReppository;
23     }
24 
25 
26     @RequestMapping("/")
27     public long index() {
28         return userRepository.count();
29     }
30 }

使用事務時在方法上應用註解@Transactional

3.添加驗證和授權支持

(1)添加spring-boot-starter-security依賴

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 4     <modelVersion>4.0.0</modelVersion>
 5     <groupId>com.example</groupId>
 6     <artifactId>myproject</artifactId>
 7     <version>0.0.1-SNAPSHOT</version>
 8     <properties>
 9         <java.version>1.8</java.version>
10     </properties>
11     <parent>
12         <groupId>org.springframework.boot</groupId>
13         <artifactId>spring-boot-starter-parent</artifactId>
14         <version>1.3.1.RELEASE</version>
15     </parent>
16     <dependencies>
17         <dependency>
18             <groupId>org.springframework.boot</groupId>
19             <artifactId>spring-boot-starter-web</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.springframework.boot</groupId>
23             <artifactId>spring-boot-starter-data-jpa</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>com.h2database</groupId>
27             <artifactId>h2</artifactId>
28             <scope>runtime</scope>
29         </dependency>
30         <dependency>
31             <groupId>org.springframework.boot</groupId>
32             <artifactId>spring-boot-starter-security</artifactId>
33         </dependency>
34     </dependencies>
35 </project>

(2)修改Application.java

 1 package simple;
 2 
 3 import org.springframework.boot.*;
 4 import org.springframework.boot.autoconfigure.*;
 5 import org.springframework.context.annotation.Bean;
 6 import org.springframework.security.config.annotation.method.configuration.*;
 7 import org.springframework.security.config.annotation.web.builders.HttpSecurity;
 8 import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
 9 import org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler;
10 
11 import simple.controller.*;
12 
13 @EnableAutoConfiguration
14 @EnableGlobalMethodSecurity(securedEnabled = true, prePostEnabled = true)
15 public class Application {
16 
17     public static void main(String[] args) throws Exception {
18         SpringApplication.run(new Object[] { Application.class, HomeController.class }, args);
19     }
20 
21     @Bean
22     public WebSecurityConfigurerAdapter webSecurityConfigurerAdapter() {
23         return new MyWebSecurityConfigurer();
24     }
25 
26     public static class MyWebSecurityConfigurer extends WebSecurityConfigurerAdapter {
27         @Override

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 出處:http://www.cnblogs.com/tangyanbo/1. 編碼基礎知識1.1 編碼ISO-8859-1編碼是單位元組編碼,向下相容ASCII,其編碼範圍是0x00-0xFF,0x00-0x7F之間完全和ASCII一致,0x80-0x9F之間是控制字元,0xA0-0xFF之間是文字元...
  • #include #include #include#define MAXNUM 200int Isood(int n);using namespace std;int main(void){ int n; cout>n; int *p; p=(int *)mallo...
  • SQLMapAPI力求簡潔。它為程式員提供4種功能:配置一個SQLMap,執行SQLupdate操作,執行查詢語句以取得一個對象,以及執行查詢語句以取得一個對象的List。配置SQLMap一旦您創建了SQLMapXML定義文件和SQLMap配置文件,配置SQLMap就是一件極其簡單的事情。SQLMa...
  • 一、collection系列:1、counter計數器如果counter(dict)是對字典的一個補充,如果counter(list)則是對列表的補充,初步測試對字典的值進行排序。############################################################...
  • 首先要安裝這個庫,可以使用pip安裝,那麼我們要首先安裝pip去https://bootstrap.pypa.io/get-pip.py下載get-pip.py,然後運行python get-pip.py安裝後添加系統path變數c:/Python27/Scripts然後安裝image庫,因為我系統...
  • golang interface記憶體佈局
  • 複製當前行:ctrl+alt+↓刪除當前行:Ctrl+d行註釋:Ctrl+/快註釋(先選中要註釋的代碼):Ctrl+shift+/提示助手(方便函數等補全):alt+/代碼格式化:Ctrl+shift+F最牛逼的快捷鍵(可以顯示所有的快捷鍵):Ctrl+shift+l
  • 前言 其實cloudera已經做了這個事了,只是把kafka的包和cdh的parcel包分離了,只要我們把分離開的kafka的服務描述jar包和服務parcel包下載了,就可以實現完美集成了。具體實現的簡要步驟可參照cloudera官網提供的文檔:http://www.cloudera.com...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...