1. 打开IDEA,点击左上角的File选项,打开菜单选择New,再打开菜单选择Project
2. 选择Spring Initializr,输入或选择项目相关的信息
3. 选择Spring Boot版本以及相应的依赖,并点击右下角的Create按钮进行项目创建
4. 项目创建完成后,点击左上角的File选项,打开菜单选择Settings选项,在弹出的页面中搜索maven,进行maven信息的设置
5. 新建controller包,编写入门程序
package com.springboot.pattern.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 入门程序
* @author: yg
*/
@RestController
@RequestMapping("hello")
public class HelloController {
/**
* 欢迎信息
* @return
*/
@RequestMapping("")
public String sayHello(){
return "Hello Spring Boot!";
}
}