@RestController @ResponseBody 可以用 ModelAndView 跳转页面
@RestController @ResponseBody 可以用 ModelAndView 跳转页面
例如
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
@Controller
@RequestMapping("")
public class Sbt2712mCtl {
@RequestMapping("txt")
Object txt() {
return "txt/txt.txt";
}
@RequestMapping("txt2") @ResponseBody
Object txt2() {
ModelAndView mv = new ModelAndView("txt/txt.txt");
return mv;
}
}
例如
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
@RestController
public class Sbt2712mCtl {
@RequestMapping("txt2")
Object txt2() {
ModelAndView mv = new ModelAndView("txt/txt.txt");
return mv;
}
}
转载自:https://juejin.cn/post/7246363351332175932