如何使用JSF和Quarkus显示自定义错误页面?

huangapple 未分类评论42阅读模式
英文:

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:

&lt;error-page&gt;
    &lt;error-code&gt;404&lt;/error-code&gt;
    &lt;location&gt;/error/404.xhtml&lt;/location&gt;
&lt;/error-page&gt;

and

Provider Bean:

@Provider
public class NotFoundExceptionMapper implements ExceptionMapper&lt;NotFoundException&gt; {

    @Override
    public Response toResponse(NotFoundException exception) {
        String text = new Scanner(this.getClass().getResourceAsStream(&quot;/META-INF/resources/error/404.xhtml&quot;), &quot;UTF-8&quot;).useDelimiter(&quot;\\A&quot;).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?

huangapple
  • 本文由 发表于 2020年7月23日 17:24:47
  • 转载请务必保留本文链接:https://java.coder-hub.com/63051010.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定