idea配置springboot项目

  • 1.文件——>新建

       idea配置springboot项目

  • 2.选择Spring Initializr,然后选择next

idea配置springboot项目

 

 

  •  3.填写项目相关的信息

               idea配置springboot项目

  •  4

               idea配置springboot项目

  •  5

              idea配置springboot项目

 

  •       6 创建web包,并创建一个类IndexController

              idea配置springboot项目

 

  •    7.IndexController代码:           
package com.springboot.web;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class IndexController {
    @RequestMapping(value = "/say")
    public @ResponseBody String say(){
        return "hello,springboot";
    }
}
  • 8.运行

        idea配置springboot项目

 

       idea配置springboot项目

 

  •  10访问以及结果
http://127.0.0.1/8080/say

idea配置springboot项目

 

上一篇:[python学习]继承


下一篇:Javase——接口