1. 程式人生 > >Springboot的基本搭建

Springboot的基本搭建

1、通過maven搭建Springboot

<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.kingdee</groupId>
  <artifactId>boottest</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>
  <!--sprong boot的預設的一些配置-->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.8.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <!--jdk-->
    <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>
            <!-- 不需要version 會根據parent版本進行新增上 -->
        </dependency>
        <!--spring boots tarter專案啟動會用到-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <!--單元測試-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <!--maven打包釋出用,可以生成可執行的jar包-->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

  2、配置application.properties檔案

server.port=8002

  該配置引數標示為工程啟動時所使用的埠號。

  3、編寫Controller

package com.kingdee;

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

@RestController
public class UserController {

	@RequestMapping(value="/login",method= RequestMethod.GET)
    public String assetsSummary(){
       return "恭喜,登入成功!";
    }
}

  @RestController的作用相當與@Controller註解和@ResponseBody註解的同時使用的作用,倘若我們只是使用@RestController註解Controller,則controller中的方法無法返回jsp頁面配置的試圖解析器。

  4、宣告配置類

package com.kingdee;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class App {

	public static void main(String[] args){
		SpringApplication.run(App.class);
	}
}

  @SpringBootApplication是一個複合註解,包括@ComponentScan,和@SpringBootConfiguration@EnableAutoConfiguration

  • @SpringBootConfiguration繼承自@Configuration,二者功能也一致,標註當前類是配置類,並會將當前類內宣告的一個或多個以@Bean註解標記的方法的例項納入到srping容器中,並且例項名就是方法名。
  • @EnableAutoConfiguration的作用啟動自動的配置,@EnableAutoConfiguration註解的意思就是Springboot根據你新增的jar包來配置你專案的預設配置,比如根據spring-boot-starter-web ,來判斷你的專案是否需要添加了webmvctomcat,就會自動的幫你配置web專案中所需要的預設配置。在下面部落格會具體分析這個註解,快速入門的demo實際沒有用到該註解。
  • @ComponentScan,掃描當前包及其子包下被@Component@Controller@Service@Repository註解標記的類並納入到spring容器中進行管理。是以前的<context:component-scan>(以前使用在xml中使用的標籤,用來掃描包配置的平行支援)。所以本demo中的User為何會被spring容器管理。