springboot快速入门
首先,建立一个空的项目
第二步:
建立一个springboot项目
第三步:添加依赖:
4.0.0 com.leyou.demo springboot-demo 1.0-SNAPSHOT 1.8 org.springframework.boot spring-boot-starter-parent 2.0.0.RELEASE org.springframework.boot spring-boot-starter-web
第四步:编写控制器
package com.java.controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.bind.annotation.RestController;/** * @author nidegui * @create 2019-05-26 10:15 */@Controllerpublic class HelloController { /** * * @return */ @ResponseBody @RequestMapping("/hello") public String hello(){ return "springboot-nihao"; }}
第五步:启动application
第六步:访问