SpringBoot 基礎知識學習(一)——快速入門
一、背景介紹
今天是2016年11月15號,接觸微服務大概一年多的時間,並且我們團隊已經在去年使用微服務架構搭建我們數字化企業雲平臺,同時在這塊也投入了很多時間去學習和研究,有一些經驗和學習心得,可以和大家一起分享與學習,提到微服務我們可能會想到許多熱門的知識點,比如spring Boot、Docker、k8s、restful、持續交付、分散式事務,服務拆分等等,接下來我會給大家分享Spring Boot相關的系列知識,同時歡迎大家留言共同討論,指出不足之處。
相信大部分學習Java的人都會這樣的經歷,在你第一次接觸和學習spring框架的時候,在感嘆它的強大同時也會其繁雜的配置拍桌而起,“我”明明配置和視訊講述的一樣,為啥我的不能執行呢(然後一些人退卻啦)?即使你熟悉了Spring,也會因為一堆反覆黏貼xml配置而煩惱,然後有一批聰明人出現,Spring annotation出現極大簡化了配置,簡化了spring學習曲線,但是攔截器,監聽器,事務,資料庫連線等還是進行配置。然而,人類對於技術追求是無止境,如實就有人想到如果spring不存在xml配置多好?那麼很高興告訴你,它已經出現,它叫Spring Boot。
什麼是Spring Boot呢?官網是這麼說的“Spring Boot makes it easy to create stand-alone, production-gradeSpring based Applications that you can “just run”. ”,大致的意思是:Spring Boot使我們更容易去建立基於Spring的獨立和產品級的可以”即時執行“的應用和服務。支援約定大於配置,目的是儘可能快地構建和執行Spring應用。Spring Boot的主要優點:
(1) 為所有Spring開發者更快的入門;
(2) 開箱即用,提供各種預設配置來簡化專案配置;
(3) 提供一系列的非功能性的功能,是常見的大型類的專案(例如:內嵌式容器、安全、健康檢查等)
(4) 沒有冗餘程式碼生成和XML配置的要求
二、快速入門例項
本例項是快速開發一個“Hello World”Web應用程式,通過這個例子對Spring Boot有一個初步的瞭解,並體驗其結構簡單、開發快速的特性。除了傳統的使用IDEA或者Eclipse建立專案外,SpringBoot提供使用SPRINGINITIALIZR工具(https://start.spring.io)產生基礎專案(選擇Spring Boot版本以及其他選項,然後下載即可),專案範例原始碼下載地址為:https://github.com/dreamerkr/SpringBoot, 具體如下圖所示:
(1) 專案結構簡介
我這裡是自己手動建立專案,不過和上面Spring提供的工具建立是一樣的效果,建立好的專案結構如下所示:
主要有java、resources、test三目錄,分別是程式入口、配置檔案和測試入口,使用DemoApplication和DemoApplicationTests類均可以啟動專案,通過觀察啟動日誌發現使用很多的預設設定,具體如下圖所示:
(2) pom.xml檔案簡介
此檔案引入了三個模組分別是starter(核心模組,包括自動配置支援、日誌和YAML)、starter-test(測試模組,包括JUnit、Hamcrest、Mockito)、starter-web(Web模組,包括SpringMVC、Tomcat),具體程式碼如下所示:
- <span style="font-size:14px;"> <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>1.3.5.RELEASE</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies></span>
(3) 編寫HelloController類
HelloController類的內容如下:
- package com.primeton.springbootlesson1;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- *
- * TODO 此處填寫 class 資訊
- *
- * @author wangzhao (mailto:wangzhao@primeton.com)
- */
- @RestController
- public class HelloController {
- @RequestMapping("/hello")
- public String sayHello(){
- return "Hello World";
- }
- }
(4) 編寫單元測試用例
DemoApplicationTests類程式碼如下所示:
- import static org.hamcrest.Matchers.equalTo;
- import staticorg.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
- import staticorg.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
- import org.junit.Before;
- import org.junit.Test;
- import org.junit.runner.RunWith;
- import org.springframework.boot.test.SpringApplicationConfiguration;
- import org.springframework.http.MediaType;
- import org.springframework.mock.web.MockServletContext;
- import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
- import org.springframework.test.context.web.WebAppConfiguration;
- import org.springframework.test.web.servlet.MockMvc;
- import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
- import org.springframework.test.web.servlet.setup.MockMvcBuilders;
- @RunWith(SpringJUnit4ClassRunner.class)
- @SpringApplicationConfiguration(classes = MockServletContext.class)
- @WebAppConfiguration
- public class DemoApplicationTests {
- private MockMvc mockMvc;
- @Before
- public void setUp(){
- mockMvc = MockMvcBuilders.standaloneSetup(new HelloController()).build();
- }
- @Test
- public void getHello() throws Exception {
- mockMvc.perform(MockMvcRequestBuilders.get("/hello").accept(MediaType.APPLICATION_JSON))
- .andExpect(status().isOk())
- .andExpect(content().string(equalTo("Hello World")));
- }
- }
(5) 啟動執行範例
執行DemoApplication主程式,然後開啟瀏覽器訪問http://localhost:8080/hello,頁面顯示如下圖所示:
相關文章
- Python快速入門之基礎知識(一)Python
- Oracle學習快速入門基礎教程Oracle
- OpenSSL 入門:密碼學基礎知識密碼學
- JavaScript 基礎知識入門JavaScript
- MySql入門--基礎知識MySql
- css 入門基礎知識CSS
- Python入門之基礎知識(一)Python
- Python入門基礎知識學什麼?Python
- JavaScript入門①-基礎知識築基JavaScript
- 網路安全基礎知識入門!網路安全學習教程
- JDK學習基礎入門(一)JDK
- sql入門基礎知識分享SQL
- Dubbo基礎入門知識點
- Java基礎知識入門-JDKJavaJDK
- Java入門基礎知識點Java
- Python 基礎(一):入門必備知識Python
- 【ASM學習】基礎知識ASM
- 別樣JAVA學習(一)基礎知識Java
- 【Redis學習⑴】Redis入門安裝及基礎資料的知識Redis
- 自媒體入門基礎知識,教你快速入門自媒體平臺
- Linux驅動入門基礎基礎知識Linux
- Python基礎知識入門(二)Python
- Python入門基礎知識(二)Python
- 【LaTeX入門】01、LaTeX基礎知識
- Python培訓入門基礎知識學什麼?Python
- 大資料分析入門基礎知識學什麼?大資料
- Android基礎知識學習Android
- 基礎知識學習筆記筆記
- JavaSE基礎知識學習-----集合Java
- WebAPI基礎知識學習(1)WebAPI
- 【ASM學習】ASM基礎知識ASM
- OpenGL ES 2.0學習(一)入門知識點
- Node基礎知識點--學習筆記(一)筆記
- SpringBoot基礎24_SpringBoot快速入門2Spring Boot
- 【SpringBoot學習一】開發入門--快速建立springboot程式Spring Boot
- Pytest學習(一)- 入門及基礎
- Python入門必知的知識點!Python基礎入門Python
- Storm入門指南第一章 基礎知識ORM