上代码:
package com.wqk.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class PageController {
@RequestMapping("")
public String index() {
// redirect 重定向
// forward转发
return "forward:/index";
}
@RequestMapping("/index")
public String indexs() {
return "";
}
}
浏览到这里的朋友,不妨浏览一下该网站:klkj1999.top