IDEA快速搭建spring boot項目教程(Spring initializr)

IDEA快速搭建spring boot項目

1.創建項目

老規矩,點擊Create New Project

在這裡插入圖片描述

在這裡插入圖片描述

在這裡插入圖片描述

在這裡插入圖片描述

在這裡插入圖片描述

在這裡插入圖片描述

2.編寫控制器

在com.demo.springbootquickdemo包下創建controller包,在controller包下創建類QuickDemoController,內容如下:

package com.demo.springbootquickdemo.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
 * @Controller和@RequestBody的結合
 */
@RestController
public class QuickDemoController {
    @RequestMapping("hello")
    public String hello(){
        return "hello world,spring-boot quick";
    }
}

3.運行項目

在這裡插入圖片描述

運行完之後在瀏覽器輸入http://localhost:8080/hello,結果:

在這裡插入圖片描述

IDEA添加配置SpringBoot Spring Initializr工具

如何在idea中添加Spring Initializr工具

新手在剛剛安裝idea工具後,打算構建一個SpringCloud工程,卻發現找不到構建工程的Spring Initializr工具。

如下圖:

在這裡插入圖片描述

接下來我們需要手動給idea下載Spring Initializr所需要的插件

1.點擊file–點擊settings–點擊plugins

在這裡插入圖片描述

2.搜索spring – 找到Spring Assistant

在這裡插入圖片描述

3.點擊install,等待加載完成後重啟idea

這時候就能看到Spring Initializr工具瞭。

在這裡插入圖片描述

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: