其他分享
首页 > 其他分享> > springboot-1-hello

springboot-1-hello

作者:互联网

创建springboot项目

1、使用网站https://start.spring.io/

2、IDEA内部集成上方网站创建

项目编辑

1、controller,dao,pojo,service包在Application类同级目录下创建

2、controller编写


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

@RestController
public class helloController {

  @RequestMapping("/hello")
  public String hello(){
      return "helloworld";
  }
}

3、banner.txt更改启动图案

4、application.properties更改配置属性

5、使用Application类启动

6、启动完成

标签:web,RestController,springboot,Application,import,hello
来源: https://www.cnblogs.com/keacua/p/15203549.html