标签: spring spring-boot
我有“自定义错误控制器”,它映射到error.html,但是我想根据环境自定义错误?
例如,如果我请求/ xy / abc,则它应显示xy_error.html
但是如果我请求/ ab / abc,那么它应该显示ab_error.html。
现在我正在尝试通过以下方式找到路径 this.path =(String)errorAttributes.get(“ path”); 但是此路径返回的是由引发错误的特定内部方法引起的值。