现在返回的是springboot的一个403页面。想返回一个自己定义的error页面,提示无权访问,该怎么写?
目前错误页面:
代码:
解决方法有很多,比如用@ControllerAdvice,实现ErrorController,还用通过spring boot 的拦截器,判断response.getStatus()==500或者response.getStatus()==400都行,方法有很多。