使用的若依框架是前后端分离的版本,若依框架本身是不支持JSP的需要对项目进行改造,具体的调整内容可以参考:https://blog.youkuaiyun.com/qq_42315633/article/details/129185944。
其中有个关键点需要注意:关于控制器的注解必须是@Controller,而不能是@RestController。例如以下代码:
@Controller
@RequestMapping("/test")
public class TestDemoController extends BaseController
{
@GetMapping("/index")
public String index(Model model)
{
model.addAttribute("key","value");
return "hello";
}
}
如果以上工作都做完了,依然会报:JSP file [WEB-INF/views/hello.jsp] not found 这个错的话,可参考:https://blog.youkuaiyun.com/wspideryue/article/details/113228455 中的解决方法,亲测可用。