想要为 Grizzly 服务器创建自定义错误页面
Want to create custom error page for Grizzly server
我们希望只要出现错误就必须提供自定义错误页面,因为默认错误页面提供了太多我们不需要的信息。请提供相同的文件,如果有的话。
灰熊服务器版本:2.3.16
提前致谢
请使用以下内容:
server.getServerConfiguration().setDefaultErrorPageGenerator(...);
请注意,为了使 ErrorPageGenerator
正常工作,您需要在启动 Grizzly 服务器之前将其附加到服务器配置。
所以你应该这样做:
HttpServer httpServer = GrizzlyHttpServerFactory.createHttpServer(
baseUri,
resourceConfig,
false // so Grizzly won't start automatically
);
httpServer.getServerConfiguration().setDefaultErrorPageGenerator(...);
httpServer.start();
我们希望只要出现错误就必须提供自定义错误页面,因为默认错误页面提供了太多我们不需要的信息。请提供相同的文件,如果有的话。
灰熊服务器版本:2.3.16
提前致谢
请使用以下内容:
server.getServerConfiguration().setDefaultErrorPageGenerator(...);
请注意,为了使 ErrorPageGenerator
正常工作,您需要在启动 Grizzly 服务器之前将其附加到服务器配置。
所以你应该这样做:
HttpServer httpServer = GrizzlyHttpServerFactory.createHttpServer(
baseUri,
resourceConfig,
false // so Grizzly won't start automatically
);
httpServer.getServerConfiguration().setDefaultErrorPageGenerator(...);
httpServer.start();