Intellij IDEA建立spring-boot項目的圖文教程,

來源:互聯網
上載者:User

Intellij IDEA建立spring-boot項目的圖文教程,

開發環境:

  • jdk版本:JDK8 
  • maven版本:maven-3.5.2  
  • 開發工具:Itellij IDEA 2017.1

前提條件:已安裝以上軟體並配置好jdk和maven的環境變數

建立步驟:

點擊坐上角file ---》選擇new ---》點擊project... 如所示:


點擊左邊Spring Initializr ---》 右上方建立jdk(若有則不需要) ---》 點擊next 如所示:

看需求修改中的資訊後點擊next(可以直接使用預設)

點擊左邊的Web ---》 選中中間列的Web ---》 點擊next 如所示:

輸入項目名稱和儲存路徑 --- 》點擊finish

建立的項目如所示:

建立HelloController類,代碼如下所示:

package com.example.demo.controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestController@RequestMapping("/hello")public class HelloController { @RequestMapping("/say") public String sayHello() {  return "hello world"; }}

執行DemoApplication中main方法後訪問http://localhost:8080/hello/say 頁面如下所示:

總結

以上所述是小編給大家介紹的Intellij IDEA建立spring-boot項目的圖文教程,希望對大家有所協助,如果大家有任何疑問歡迎給我留言,小編會及時回複大家的!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.