1. 程式人生 > >IDEA+Maven 構建spring boot demo

IDEA+Maven 構建spring boot demo

一、通過Spring Initializr工具產生基礎專案

    b:選擇構建工具Maven Project、Spring Boot版本,一些基本資訊:


    c:點選Generate Project

    d:解壓得到的壓縮包 

二、Idea匯入Maven專案

      1. 選單->File->New->Project from Existing Sources...
      2. 選擇解壓資料夾匯入
      3. Import project from external model 並選擇 Maven,一路next
三、引入Web模組
      1. 現存pom.xml中有兩個模組:
        1. spring-boot-starter:核心模組,包括自動配置支援,日誌等
        2. spring-boot-starter-test:測試模組,包括JUnit等
  1. 引入web模組

四、編寫helloworld

    a:在主程式包下建立
子包com.springBoot.web
    b:在該子包內建立類HelloController:


    c:啟動主程式,此時可以看見Tomcat順利啟動

    d:在瀏覽器位址列輸入:http://loccalhost:8080/hello,頁面顯示:Hello World!