1. 程式人生 > >1.SpringBoot之Helloword 快速搭建一個web專案

1.SpringBoot之Helloword 快速搭建一個web專案

背景:

  Spring Boot是由Pivotal團隊提供的全新框架,其設計目的是用來簡化新Spring應用的初始搭建以及開發過程。該框架使用了特定的方式來進行配置,從而使開發人員不再需要定義樣板化的配置。通過這種方式,Spring Boot致力於在蓬勃發展的快速應用開發領域(rapid application development)成為領導者。

  Spring Boot(英文中是“引導”的意思),是用來簡化Spring應用的搭建到開發的過程。應用開箱即用,只要通過 “just run”(可能是 java -jar 或 tomcat 或 maven外掛run 或 shell指令碼),就可以啟動專案。二者,Spring Boot 只要很少的Spring配置檔案(例如那些xml,property)。因為“習慣優先於配置”的原則,使得Spring Boot在快速開發應用和微服務架構實踐中得到廣泛應用。 Javaer裝好JDK環境和Maven工具就可以開始學習Boot了~

優點:

  1. 建立獨立的Spring applications
  2. 能夠使用內嵌的Tomcat, Jetty or Undertow,不需要部署war
  3. 提供starter pom來簡化maven配置
  4. 自動配置Spring
  5. 提供一些生產環境的特性,比如metrics, health checks and externalized configuration
  6. 絕對沒有程式碼生成和XML配置要求

一、SpringBoot環境準備:

  • jdk1.8
  • maven3.0+
  • Intellij idea  

二、通過Idea新建一個springBoot專案:

1.File-->new-->project 選擇 Spring Initializr

2.填寫專案名稱  HelloSpringBoot 點選next

3.選擇依賴 ,idea建立springboot專案時候給我們提供很多可選擇的依賴,我們選擇 web

4.選擇專案儲存路徑  點選完成建立

5.新生成的專案目錄如下

6.自動生成的pom檔案如下

<?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>hellospringboot</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>HelloSpringBoot</name> <description>Demo project for Spring Boot</description> <!-- 公共spring-boot配置,下面依賴jar檔案不用在寫版本號 --> <parent> <groupId>org.springframework.boot</groupId> <!-- 自動包含以下資訊: --> <!-- 1.使用Java6編譯級別 --> <!-- 2.使UTF-8編碼 --> <!-- 3.實現了通用的測試框架 (JUnit, Hamcrest, Mockito). --> <!-- 4.智慧資源過濾 --> <!-- 5.智慧的外掛配置(exec plugin, surefire, Git commit ID, shade). 等等。。。--> <artifactId>spring-boot-starter-parent</artifactId> <!-- spring boot 版本 --> <version>1.5.6.RELEASE</version> <!-- 表示父模組pom的相對路徑,這裡沒有值 --> <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> <!-- web web專案必須有此pom--> <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> <!-- maven外掛(不寫也可以) 有此pom後可以通過配置 Maven命spring-boot:run令來啟動專案 --> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>

7.點選run 啟動專案

8.啟動成功,開啟瀏覽器,訪問http://localhost:8080/hello,成功!