[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
|
[jetty-users] ErrorHandler fallback from application to server
|
- From: Tommy Becker <Thomas.Becker@xxxxxxxxx>
- Date: Sun, 26 Oct 2025 16:26:47 +0000
- Accept-language: en-US
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=xperi.com; dmarc=pass action=none header.from=xperi.com; dkim=pass header.d=xperi.com; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=lVpzViiUhCUmjLxii6l+D6cQ8LNnU/ruzCzOeJ8e1cE=; b=TQwPi51lbYXCYB4vvRSOm9xGuuX8WFqz50v1IL8iZOywcGrQFL8bJxieFF1J8cG9Q7prsZjcof2W8dLmY6KkhbXzbIfQ/HjZWPbvSIBWofLdfbJACViaPSFnXunCJijF96ottqqyhseltYzPJOI3NeMu7T2UipKllUw/ZszIZeKIVgn9H6cUukW7JyvgS1XlLpdVbmGrlvgG5hFqGd2USfrQaYeMfbfBAPHScUlXH0MTt4a3S1QFgfyvGizzFPbkRIN6leXRUsxAOP8RYar4Bw4XlWbej1T3y6AXq2DIkeE8/RKiOR0k5f6JLps6tWj+gMTVWGMAgTMS7YAU2jaXrw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=aAC3lDvizobW5zgrFAlrygDyrRPrirj0Eeo8oOaU637/YWzluaonHV8D+U8XTxLz0a2kFcxKsa0UBxr+S9w90Wj2oxT4P2QlGCToazP2Okc21C0Xh9S/mIHH57opae6Jh/okWjXZXCgf3BO5jlj49aqWeD3qCnkvj7X9mMeq3tYt7mZ8xQSbVgJaHotyXWrTs9f3sAd5sM/vE5FMsBZ/Gye7r1zlZocTYmIQzTKwXjhe9txzyfzP++j1dd3u+zToukzWQ4Jtr7vfHxzNyvwW2OpvO/0CHD0AGVUDDTOVDGgdo8PAhG3nixzEGdhbXkdTg6JO+8TSyLTKUkSLlj6OrA==
- Delivered-to: jetty-users@xxxxxxxxxxx
- List-archive: <https://www.eclipse.org/mailman/private/jetty-users/>
- List-help: <mailto:jetty-users-request@eclipse.org?subject=help>
- List-subscribe: <https://www.eclipse.org/mailman/listinfo/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=subscribe>
- List-unsubscribe: <https://www.eclipse.org/mailman/options/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=unsubscribe>
- Thread-index: AQHcRpU0k9LCmAHYpUqDqLdJ0gJG/A==
- Thread-topic: ErrorHandler fallback from application to server
I’m migrating from Jetty 9 to 12.1 and had a question about the intended ErrorHandler behavior. I have a custom handler that I want to be used for all contexts (and no context) on the server, and I’m trying to avoid having 2 different implementations of it
for the server and my EE8 applications. Is there supposed to be some sort of fallback behavior wherein if a context does not have an ErrorHandler set it falls back to the server level one? The code in ErrorHandler.getErrorHandler() looks like it tries to
do this but I couldn’t get it to work. Thanks!