Spring Boot實踐教程(一):Hello,world!

  本篇會經過完成一個經常使用的Helloworld示例,來開始咱們的Spring Boot旅程html

準備工做

15分鐘java

開發環境web

項目建立

  項目建立的時候咱們能夠選擇經過自定義配置Maven文件來建立,也能夠用Spring官方提供的Spring Initializr工具,Spring Initializr是一個能夠簡化Spring Boot項目構建的工具,有兩種使用Spring Initializr的方法:spring

  • 官方提供的web頁面工具,地址apache

  • 開發工具集成的方式瀏覽器

  兩種方式操做的步驟是同樣的,只不過經過Web頁面工具多了一步將生成結果導入到開發工具的過程,這裏咱們採用的第二種:開發工具集成的Spring Initializr。tomcat

  在Idea中New Project >選擇Spring Initializ即出現以下對話框:springboot

  填寫對應的Group、Artifact,選擇Type爲Maven Project,並填寫其餘相關信息(如上圖所示)後點擊下一步,在這個步驟中能夠選擇對應的功能,選擇後Spring Boot就會爲項目添加對應的依賴等,這裏咱們只添加一個Web的基礎功能。進一步填寫項目路徑後便可完成一個Web項目的建立。微信

  看一下項目建立完成以後的結構:app

spring-boot-1-helloworld
    │  pom.xml    
    ├─src
    │  ├─main
    │  │  ├─java
    │  │  │  └─com
    │  │  │      └─practice
    │  │  │          └─springboot
    │  │  │              └─hello
    │  │  │                  │  SpringBoot1HelloworldApplication.java
    │  │  │                          
    │  │  └─resources
    │  │      │  application.properties
    │  │      ├─static
    │  │      └─templates
    │  └─test
    │      └─java
    │          └─com
    │              └─practice
    │                  └─springboot
    │                      └─hello
    │                              SpringBoot1HelloworldApplicationTests.java

項目運行

  咱們能夠經過運行main方法的方式將項目啓動起來,咱們先建立一個Controller來看更直觀的看一下啓動以後的效果,在web包(須要手動建立)中建立HelloController:

package com.practice.springboot.hello.web;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @RequestMapping("/")
    public String hi(){
        return "Congratulations! It works!";
    }
}

  運行Springboot1HelloApplication.java中的main方法,咱們會在控制檯中看到一個Spring的標誌和Spring Boot版本的說明。啓動完成以後在瀏覽器中訪問http://localhost:8080/ ,會看到下圖。至此咱們花了幾分鐘,就建立了一個web項目並將其運行起來了。在這個過程當中咱們沒有添加任何jar包的依賴,沒有配置Web.xml,沒有配置Spring和SpringMVC的環境,甚至都沒有將項目部署只Tomcat,由於這一切Spring Boot都爲咱們完成了。

項目分析

  首先咱們來看一下pom.xml文件

<?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.practice.springboot</groupId>
    <artifactId>hello</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>spring-boot-1-helloworld</name>
    <description>spring-boot-1-helloworld</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.8.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>

  在pom文件中能夠看到如下信息:

  1. 整個項目繼承於spring-boot-starter-parent
  2. 項目有兩個依賴包spring-boot-starter-web,spring-boot-starter-test

  有了以上兩個配置,Spring Boot就爲咱們配置了一個基礎的web項目的環境,包括依賴包和一個嵌入的tomcat環境。後續的文章裏面咱們會分析一下這裏的starter。

項目打包

  在項目路徑下運行maven命令mvn package,跑完以後就會在項目的target目錄下獲得一個jar文件,這就是項目包。跟之前的war包不太同樣的是,這裏的項目包格式是jar包。

  能夠在經過java -jar 文件名.jar 來運行這個jar文件,而後在瀏覽器中訪問http://localhost:8080/ ,能夠看到結果與以前在開發環境下是同樣的。

總結

  經過以上的步驟,完成了一個初步的最基礎的Spring Boot的項目的建立和運行,後續我會經過實踐的方式來分析一下Spring Boot的一些經常使用功能和特性,並按照我本身的理解來分析一下Spring Boot的運行原理。

  參考:
  Spring Boot Reference Guide

歡迎關注個人微信公衆號:

相關文章
相關標籤/搜索