真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

IntellijIDEA如何創(chuàng)建spring-boot項(xiàng)目

這篇文章將為大家詳細(xì)講解有關(guān)Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

雙牌網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,雙牌網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為雙牌近千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營(yíng)銷網(wǎng)站建設(shè)要多少錢(qián),請(qǐng)找那個(gè)售后服務(wù)好的雙牌做網(wǎng)站的公司定做!

開(kāi)發(fā)環(huán)境:

  • jdk版本:JDK8 

  • maven版本:maven-3.5.2

  • 開(kāi)發(fā)工具:Itellij IDEA 2017.1

前提條件:已安裝以上軟件并配置好jdk和maven的環(huán)境變量

創(chuàng)建步驟:

點(diǎn)擊坐上角file ---》選擇new ---》點(diǎn)擊project... 如下圖所示:

Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目

點(diǎn)擊左邊Spring Initializr ---》 右上角新建jdk(若有則不需要) ---》 點(diǎn)擊next 如下圖所示:

Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目

看需求修改下圖中的信息后點(diǎn)擊next(可以直接使用默認(rèn))

Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目

點(diǎn)擊左邊的Web ---》 選中中間列的Web ---》 點(diǎn)擊next 如下圖所示:

Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目

輸入項(xiàng)目名稱和保存路徑 --- 》點(diǎn)擊finish

Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目

創(chuàng)建的項(xiàng)目如下圖所示:

Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目

創(chuàng)建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";
 }
}

執(zhí)行DemoApplication中main方法后訪問(wèn)http://localhost:8080/hello/say 頁(yè)面如下所示:

Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目

關(guān)于“Intellij IDEA如何創(chuàng)建spring-boot項(xiàng)目”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。


當(dāng)前名稱:IntellijIDEA如何創(chuàng)建spring-boot項(xiàng)目
當(dāng)前網(wǎng)址:http://weahome.cn/article/gsdesg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部