1. 程式人生 > >Spring boot 學習之 Hello World

Spring boot 學習之 Hello World

  • 使用IDE新建maven專案,如果使用eclipse,則選擇jar包方式(不選擇war包方式)

  • 必須要引入繼承springboot-parent包,它幫我們實現了很多jar的依賴管理(這個在<dependencies></dependencies>標籤外):

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>
    1.5.9.RELEASE</version> </parent>
  • pom檔案匯入springboot-web依賴即可,springboot預設整合spring mvc:

        <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
  • 以上操作完成後,既可編寫HelloWorld測試類:

    package
    xyz.welog.controller; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; /** * 這是我的第一個Spring boot */
    @RestController @EnableAutoConfiguration public class TestController { @RequestMapping(value = "/hello",method = RequestMethod.GET) public String hello() { return "Hello Spring Boot"; } public static void main(String[] args){ // 執行 SpringApplication.run(TestController.class,args); } }
  • 瀏覽器訪問結果:
    這裡寫圖片描述

    最基本的Springboot完成