使用idea创建springboot具体过程

2018-08-29  本文已影响0人  程序媛小雪

准备材料

  1. 安装并配置好的idea

创建springboot详细过程如下

image.png image.png image.png image.png image.png image.png

到此,springboot项目引入完毕

项目文件目录如下

image.png

为项目创建controller

image.png

手写第一个helloworld

package com.springboot.demo.springbootdemo.controller;

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

@Controller
public class HelloWorldController {

    @RequestMapping("/hello")
    @ResponseBody
    public String hello(){
        return "Hello spring boot";
    }
}

访问项目

image.png

访问效果

image.png
上一篇下一篇

猜你喜欢

热点阅读