码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot

时间:2017-06-25 23:08:35      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:map   body   ati   class   turn   spring   role   string   ret   

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

@RestController //等同于同时加上了@Controller和@ResponseBody
public class HelloControler {

//访问/hello或者/hi任何一个地址,都会返回一样的结果
@RequestMapping(value = {"/hello","/hi"},method = RequestMethod.GET)
public String say(){
return "hi you!!!";
}
}

Spring Boot

标签:map   body   ati   class   turn   spring   role   string   ret   

原文地址:http://www.cnblogs.com/mhc-fly/p/7078330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!