package com.sy.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; /** * @author zhangfan * @web www.sy.com * @company 郑州商友科技有限公司 * @time 2018-11-20 11:12 */ @Controller public class TestController { @RequestMapping("/index") public String toindex() { return "hello springBoot"; } @RequestMapping("/hello") public String toHello() { return "hello"; } @RequestMapping("/welcome") public String toWelcome() { return "Welcome"; } }