英文:
How to display custom error pages with JSF and Quarkus?
问题
我试图在JSF中为不同的状态码(401、404、500等)显示自定义错误页面(我的面部版本:2.3-next-M3)。
我正在使用Quarkus应用程序服务器(版本1.5.2.Final)和JDK 8。
目前,如果发生异常,将显示默认的Quarkus内部服务器错误HTML页面。如果找不到资源,应用程序服务器将显示输入的路径到不存在的资源。但我想显示我自己的自定义错误页面。
我已经尝试过:
web.xml:
<error-page>
<error-code>404</error-code>
<location>/error/404.xhtml</location>
</error-page>
和
提供程序Bean:
@Provider
public class NotFoundExceptionMapper implements ExceptionMapper<NotFoundException> {
@Override
public Response toResponse(NotFoundException exception) {
String text = new Scanner(this.getClass().getResourceAsStream("/META-INF/resources/error/404.xhtml"), "UTF-8").useDelimiter("\\A").next();
return Response.status(404).entity(text).build();
}
}
但是什么都没有起作用。我漏掉了什么吗?
我应该怎么做才能显示我的自定义错误页面?
英文:
I am trying to display custom error pages for different status codes (401, 404, 500, ...) in JSF (myfaces version: 2.3-next-M3).
I am using a Quarkus Application Server (1.5.2.Final) with JDK 8.
At the moment the default Quarkus Internal Server Error HTML page will be displayed, if an exception occurs. If a resource could not be found the application server will display the entered path to the not existing resource. But I want to display my own custom error pages.
I already tried:
web.xml:
<error-page>
<error-code>404</error-code>
<location>/error/404.xhtml</location>
</error-page>
and
Provider Bean:
@Provider
public class NotFoundExceptionMapper implements ExceptionMapper<NotFoundException> {
@Override
public Response toResponse(NotFoundException exception) {
String text = new Scanner(this.getClass().getResourceAsStream("/META-INF/resources/error/404.xhtml"), "UTF-8").useDelimiter("\\A").next();
return Response.status(404).entity(text).build();
}
}
But nothing worked. Am I missing something?
What can I do to display my custom error pages?
专注分享java语言的经验与见解,让所有开发者获益!
评论