Spring Boot入門學習,解決複雜的spring配置文件及jar包

轉載:http://www.javashuo.com/article/p-xfgcmypi-gz.htmlhtml

總結java

爲什麼出了這樣的框架?mysql

Spring Boot 是全部基於 Spring 開發的項目的起點。Spring Boot 的設計是爲了讓你儘量快的跑起來 Spring 應用程序而且儘量減小你的配置文件。web

理解spring

它並非什麼新的框架,而是默認配置了不少框架的使用方式,就像 Maven 整合了全部的 jar 包同樣sql

簡單配置就能跑起來應用,主要是web應用,簡單、快速、方便地搭建項目;對主流開發框架的無配置集成;極大提升了開發、部署效率數據庫

Spring Boot 快速搭建

第一步:新建項目

選擇 Spring Initializr ,而後選擇默認的 url 點擊【Next】:apache

而後修改一下項目的信息:api

勾選上 Web 模板:tomcat

選擇好項目的位置,點擊【Finish】:

若是是第一次配置 Spring Boot 的話可能須要等待一下子 IDEA 下載相應的 依賴包,默認建立好的項目結構以下:

項目結構仍是看上去挺清爽的,少了不少配置文件,咱們來了解一下默認生成的有什麼:

  • SpringbootApplication: 一個帶有 main() 方法的類,用於啓動應用程序
  • SpringbootApplicationTests:一個空的 Junit 測試了,它加載了一個使用 Spring Boot 字典配置功能的 Spring 應用程序上下文
  • application.properties:一個空的 properties 文件,能夠根據須要添加配置屬性
  • pom.xml: Maven 構建說明文件
第二步:HelloController

在【cn.wmyskxz.springboot】包下新建一個【HelloController】:

package cn.wmyskxz.springboot;

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

/**
 * 測試控制器
 *
 * @author: @我沒有三顆心臟
 * @create: 2018-05-08-下午 16:46
 */
@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String hello() {
        return "Hello Spring Boot!";
    }
}
  • @RestController 註解: 該註解是 @Controller 和 @ResponseBody 註解的合體版
第三步:利用 IDEA 啓動 Spring Boot

咱們回到 SpringbootApplication 這個類中,而後右鍵點擊運行:

  • 注意:咱們之因此在上面的項目中沒有手動的去配置 Tomcat 服務器,是由於 Spring Boot 內置了 Tomcat

等待一下子就會看到下方的成功運行的提示信息:

能夠看到咱們的 Tomcat 運行在 8080 端口,咱們來訪問 「/hello」 地址試一下:

能夠看到頁面成功顯示出咱們返回的信息。


解析 Spring Boot 項目

這一部分參考自:Spring Boot乾貨系列(一)優雅的入門篇 ——嘟嘟獨立博客

解析 pom.xml 文件

讓咱們來看看默認生成的 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>cn.wmyskxz</groupId>
    <artifactId>springboot</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>springboot</name>
    <description>Demo project for Spring Boot</description>

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

咱們能夠看到一個比較陌生一些的標籤 <parent> ,這個標籤是在配置 Spring Boot 的父級依賴:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.1.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

有了這個,當前的項目纔是 Spring Boot 項目,spring-boot-starter-parent 是一個特殊的 starter ,它用來提供相關的 Maven 默認依賴,使用它以後,經常使用的包依賴就能夠省去 version 標籤。

關於具體 Spring Boot 提供了哪些 jar 包的依賴,咱們能夠查看本地 Maven 倉庫下:\repository\org\springframework\boot\spring-boot-dependencies\2.0.1.RELEASE\spring-boot-dependencies-2.0.1.RELEASE.pom 文件來查看,挺長的...

應用入口類

Spring Boot 項目一般有一個名爲 *Application 的入口類,入口類裏有一個 main 方法, 這個 main 方法其實就是一個標準的 Javay 應用的入口方法。

@SpringBootApplication 是 Spring Boot 的核心註解,它是一個組合註解,該註解組合了:@Configuration、@EnableAutoConfiguration、@ComponentScan; 若不是用 @SpringBootApplication 註解也可使用這三個註解代替。

  • 其中,@EnableAutoConfiguration 讓 Spring Boot 根據類路徑中的 jar 包依賴爲當前項目進行自動配置,例如,添加了 spring-boot-starter-web 依賴,會自動添加 Tomcat 和 Spring MVC 的依賴,那麼 Spring Boot 會對 Tomcat 和 Spring MVC 進行自動配置。
  • Spring Boot 還會自動掃描 @SpringBootApplication 所在類的同級包以及下級包裏的 Bean ,因此入口類建議就配置在 grounpID + arctifactID 組合的包名下(這裏爲 cn.wmyskxz.springboot 包)
Spring Boot 的配置文件

Spring Boot 使用一個全局的配置文件 application.properties 或 application.yml,放置在【src/main/resources】目錄或者類路徑的 /config 下。

Spring Boot 不只支持常規的 properties 配置文件,還支持 yaml 語言的配置文件。yaml 是以數據爲中心的語言,在配置數據的時候具備面向對象的特徵。

Spring Boot 的全局配置文件的做用是對一些默認配置的配置值進行修改。

  • 簡單實例一下

咱們一樣的將 Tomcat 默認端口設置爲 8080 ,並將默認的訪問路徑從 「/」 修改成 「/hello」 時,使用 properties 文件和 yml 文件的區別如上圖。

  • 注意: yml 須要在 「:」 後加一個空格,幸虧 IDEA 很好地支持了 yml 文件的格式有良好的代碼提示;
  • 咱們能夠本身配置多個屬性

咱們直接把 .properties 後綴的文件刪掉,使用 .yml 文件來進行簡單的配置,而後使用 @Value 來獲取配置屬性:

重啓 Spring Boot ,輸入地址:localhost:8080/hello 能看到正確的結果:

  • 注意: 咱們並無在 yml 文件中註明屬性的類型,而是在使用的時候定義的。

你也能夠在配置文件中使用當前配置:

仍然能夠獲得正確的結果:

  • 問題: 這樣寫配置文件繁瑣並且可能會形成類的臃腫,由於有許許多多的 @Value 註解。
  • 封裝配置信息

咱們能夠把配置信息封裝成一個類,首先在咱們的 name 和 age 前加一個 student 前綴,而後新建一個 StudentProperties 的類用來封裝這些信息,並用上兩個註解:

  • @Component:代表當前類是一個 Java Bean
  • @ConfigurationProperties(prefix = "student"):表示獲取前綴爲 sutdent 的配置信息

這樣咱們就能夠在控制器中使用,重啓獲得正確信息:

Spring Boot 熱部署

在目前的 Spring Boot 項目中,當發生了任何修改以後咱們都須要從新啓動纔可以正確的獲得效果,這樣會略顯麻煩,Spring Boot 提供了熱部署的方式,當發現任何類發生了改變,就會經過 JVM 類加載的方式,加載最新的類到虛擬機中,這樣就不須要從新啓動也能看到修改後的效果了。

  • 作法也很簡單,修改 pom.xml 便可!

咱們往 pom.xml 中添加一個依賴就能夠了:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional> <!-- 這個須要爲 true 熱部署纔有效 -->
</dependency>

從新啓動 Spring Boot ,而後修改任意代碼,就能觀察到控制檯的自動重啓現象:

關於如何在 IDEA 中配置熱部署:傳送門


Spring Boot 使用

上面已經完成了 Spring Boot 項目的簡單搭建,咱們僅僅須要進行一些簡單的設置,寫一個 HelloController 就可以直接運行了,不要太簡單...接下來咱們再深刻了解一下 Spring Boot 的使用。

Spring Boot 支持 JSP

Spring Boot 的默認視圖支持是 Thymeleaf 模板引擎,可是這個咱們不熟悉啊,咱們仍是想要使用 JSP 怎麼辦呢?

  • 第一步:修改 pom.xml 增長對 JSP 文件的支持
<!-- servlet依賴. -->
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
</dependency>

<!-- tomcat的支持.-->
<dependency>
    <groupId>org.apache.tomcat.embed</groupId>
    <artifactId>tomcat-embed-jasper</artifactId>
    <scope>provided</scope>
</dependency>
  • 第二步:配置試圖重定向 JSP 文件的位置

修改 application.yml 文件,將咱們的 JSP 文件重定向到 /WEB-INF/views/ 目錄下:

  • 第三步:修改 HelloController

修改 @RestController 註解爲 @Controller ,而後將 hello 方法修改成:

  • 第四步:新建 hello.jsp 文件

在【src/main】目錄下依次建立 webapp、WEB-INF、views 目錄,並建立一個 hello.jsp 文件:

  • 第五步:刷新網頁

由於咱們部署了熱部署功能,因此只須要等待控制檯重啓信息完成以後再刷新網頁就能夠看到正確效果了:

  • 關於 404,使用 spring-boot:run 運行項目能夠解決:

集成 MyBatis
  • 第一步:修改 pom.xml 增長對 MySql和 MyBatis 的支持
<!-- mybatis -->
<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>1.1.1</version>
</dependency>
<!-- mysql -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.21</version>
</dependency>
  • 第二步:新增數據庫連接參數

這裏咱們就直接使用以前建立好的 student 表了吧:

  • 第三步:建立 Student 實體類和 StudentMapper 映射類

在【cn.wmyskxz.springboot】下新建一個【pojo】包,而後在其下建立一個 Student 類:

public class Student {

    private Integer id;
    private Integer student_id;
    private String name;
    private Integer age;
    private String sex;
    private Date birthday;

    /* getter and setter */
}

在【cn.wmyskxz.springboot】下新建一個【mapper】包,而後在其下建立一個 StudentMapper 映射類:

package cn.wmyskxz.springboot.mapper;

import cn.wmyskxz.springboot.pojo.Student;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;

import java.util.List;

@Mapper
public interface StudentMapper {

    @Select("SELECT * FROM student")
    List<Student> findAll();
}
  • 第四步:編寫 StudentController

在【cn.wmyskxz.springboot】下新建一個【controller】包,而後在其下建立一個 StudentController :

package cn.wmyskxz.springboot.controller;

import cn.wmyskxz.springboot.mapper.StudentMapper;
import cn.wmyskxz.springboot.pojo.Student;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import java.util.List;

/**
 * Student 控制器
 *
 * @author: @我沒有三顆心臟
 * @create: 2018-05-08-下午 20:25
 */
@Controller
public class StudentController {

    @Autowired
    StudentMapper studentMapper;

    @RequestMapping("/listStudent")
    public String listStudent(Model model) {
        List<Student> students = studentMapper.findAll();
        model.addAttribute("students", students);
        return "listStudent";
    }
}

第五步:編寫 listStudent.jsp 文件

咱們簡化一下 JSP 的文件,僅顯示兩個字段的數據:

<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<table align='center' border='1' cellspacing='0'>
    <tr>
        <td>id</td>
        <td>name</td>
    </tr>
    <c:forEach items="${students}" var="s" varStatus="st">
        <tr>
            <td>${s.id}</td>
            <td>${s.name}</td>
        </tr>
    </c:forEach>
</table>
  • 第六步:重啓服務器運行

由於往 pom.xml 中新增長了依賴的包,因此自動重啓服務器沒有做用,咱們須要手動重啓一次,而後在地址輸入:localhost:8080/listStudent 查看效果:

相關文章
相關標籤/搜索