package com.tedu.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
如果Controller类上没有
@Controller /* 这个注解表示当前类是属于控制层 */
public class HelloController {
/* http://localhost/项目名称/hello */
@RequestMapping("/hello")
/* 这个注解用于:映射请求的资源路径(/hello)和当前方法(hello)的对应关系
* 当浏览器请求 /hello 路径时, 将会访问(执行)当前这个方法 */
public String testHello() {
System.out.println("hello springmvc...");
//转向/WEB-INF/pages/home.jsp,因为配置前缀后缀,所以就可以写少
return "home";
}
}