我的springboot之路(1)----初識springboot
一、什麼是springboot
網上關於springboot的介紹很多,這裡就不一一贅述了,簡要說下其誕生背景和作用
1、SpringBoot 是為了簡化 Spring 應用的建立、執行、除錯、部署等一系列問題而誕生的產物,自動裝配的特性讓我們可以更好的關注業務本身而不是外部的XML配置,我們只需遵循規範,引入相關的依賴就可以輕易的搭建出一個 WEB 工程
2、springboot具有自動裝配的特性,也就是說,以後建立web專案我們不再需要糾結於如何配置xml檔案,結合maven也省去了匯入各種jar包的煩惱,為所有初學者提供了一個快速入門上手的體驗
3、springboot支援執行期內嵌容器,如 Tomcat、Jetty ,以後不需要再手動將專案新增進Tomcat,直接啟動專案開啟瀏覽器輸入相應路徑即可執行
4、springboot還具有自動管理依賴 、自帶應用監控、支援關係資料庫和非關係資料庫、支援熱部署等功能
二、建立第一個springboot工程
兩種方法建立
1、使用IntelliJ IDEA建立
(1)開啟idea,點選File-new-Project,出現以下頁面,選擇Spring Initializr,
(2)然後點選next,填寫目錄包資訊
- Group: 組織ID,一般分為多個段,這裡我只說兩段,第一段為域,第二段為公司名稱。域又分為 org、com、cn等等,其中 org為非營利組織,com為商業組織。如阿里、淘寶(com.alibaba/com.taobao)
- Artifact: 唯一識別符號,一般是專案名稱
(3)再次點選next,選擇web,勾選web
(4)點選next,點選finish,一個springboot專案就建立成功啦!
2、通過線上網站http://start.spring.io/建立
選擇springboot相應版本,填寫專案group等資訊,點選Generate Project下載專案壓縮包,再將下載好的壓縮包解壓後匯入到Idea就可以啦,超級簡單!
三、用建立好的專案編寫第一個程式
(1)建立HelloController檔案
package com.example.hello;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author Felix
* @date 2018/12/2 12:26
*/
@RestController
public class HelloController {
@RequestMapping("/hello")
public String HelloSpringboot(){
return "Hello!springboot!";
}
}
(2)執行專案自動建立的HelloApplication檔案,在檔案中右擊,選擇“Run HelloApplication”
package com.example.hello;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
//程式啟動入口
public class HelloApplication {
public static void main(String[] args) {
SpringApplication.run(HelloApplication.class, args);
}
}
(3)開啟瀏覽器,輸入http://localhost:8080/hello,回車,看見如下介面說明執行成功!
(4)給出pom檔案,這是建立專案的時候IDE自己配置好的,無需再配置
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>hello</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>hello</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<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>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
一個簡單的springboot專案就這樣做好了,無需配置xml檔案,無需將專案匯入Tomcat,簡單建立配置啟動,瀏覽器就能直接執行。
springboot,大道至簡!!!一步步來!!!