Idea社区版创建SpringBoot

一 下载Spring Initalizr and Assistant插件

选择左上角的File->Settings->Plugins,在搜索框中输入Spring,出现的第一个Spring Boot Helper插件,点击Installed,下载插件。(这里已经下载)

Idea社区版创建SpringBoot_第1张图片

 二 创建SpringBoot项目

1点击创建项目,选择Spring Initalizr,然后选择自己的JDK版本,选择完后,点击Next。

Idea社区版创建SpringBoot_第2张图片

 2 设置GAV及pom配置信息

Idea社区版创建SpringBoot_第3张图片

 3 选择Spring Boot版本及依赖

Idea社区版创建SpringBoot_第4张图片

 4 设置项目存储类型

Idea社区版创建SpringBoot_第5张图片

5 删除不需要的内容:图中所框选的内容可以进行删除,不删除也没有影响

Idea社区版创建SpringBoot_第6张图片

三 项目结构

 Idea社区版创建SpringBoot_第7张图片

四 创建一个Spring DemoController

 (1)创建DemoController类

package com.example.demo;

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

@RestController
public class DemoController {
    @RequestMapping("/say")
    public String say(){
        return "你好,世界!";
    }
}

 注:新创建的类要在Application同级或下级目录下,否则将产生错误。

(2)启动Application类

端口号:8080

Idea社区版创建SpringBoot_第8张图片

 在浏览器中输入:localhost:8080/say

Idea社区版创建SpringBoot_第9张图片

你可能感兴趣的:(spring,boot,intellij-idea,java)