这应该可以解决您的问题.
ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS); context.setContextPath("/*"); Server jettyServer = new Server(8080); jettyServer.setHandler(context); ErrorPageErrorHandler errorHandler = new ErrorPageErrorHandler(); errorHandler.addErrorPage(404, "/missing.html"); context.setErrorHandler(errorHandler);