springboot学习(一):创建项目

 

 

 

 

 

package com.glory.demo.Controller;

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

@Controller
public class testController {
    @RequestMapping("/hello")
    @ResponseBody
    String hello() {
        return "Hello world";
    }
}

  

 

 

posted @ 2018-07-30 23:15  glory.xu  阅读(187)  评论(0编辑  收藏  举报