Idea快速搭建一個springbootWeb專案

hjkl_uiop發表於2020-10-07

Idea搭建一個springbootWeb專案

一、開發工具及環境:

    Idea(Ultimate):   https://www.jetbrains.com/idea/download/#section=windows

    jdk:1.8、maven

二、建立Springboot專案

1、選擇建立一個新的專案
在這裡插入圖片描述
在這裡插入圖片描述
2、進行路徑、包名的配置
在這裡插入圖片描述
在這裡插入圖片描述
3.專案名和專案存放位置
在這裡插入圖片描述
4.刪除臨時檔案

5.resources為資原始檔路徑:存放propertie檔案,static、templates目錄存放前端頁面檔案:static存放 js、css檔案,templates存放html等檔案。
在這裡插入圖片描述
6.在com.edu.springboot建一個名為Demo的java檔案
在這裡插入圖片描述
在這裡插入圖片描述
|package com.edu.springboot;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Demo {
@RequestMapping("/index")
private String index(){
return “hello world!”;
}
}
7.在SpringbootApplication類裡執行在這裡插入圖片描述
8.執行成功
在這裡插入圖片描述
9.訪問
在這裡插入圖片描述

相關文章