com.tedu.controller

package com.tedu.controller;

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

@Controller//声明这是控制器类
//浏览器输入/hello,跳转/WEB-INF/jsp/hello.jsp页面 public class HelloSpringMvc { @RequestMapping("/hello") public String hello(){ System.out.println("hello,springmvc"); return "/WEB-INF/jsp/hello.jsp"; } }

  

原文地址:https://www.cnblogs.com/yangjingru/p/13693091.html