Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jersey-dev] [External] : Obtaining Path template for Resource or Sub Resource at ContainerRequestFilter
  • From: Jan Supol <jan.supol@xxxxxxxxxx>
  • Date: Thu, 7 Mar 2024 16:18:30 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=oracle.com; dmarc=pass action=none header.from=oracle.com; dkim=pass header.d=oracle.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; 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=FL66yvDk4xYhgplgKboWbPNBRqvPAy3uCrUWp7tAezI=; b=Ablc/nVLhhDTmrrKeyYVr3EUe02dBvRoDT0+9Xjxp83vyz5XP+GUtCRnIyaT9hC3jHlWR3Dt5z9kG9fUqk2VS1JPJKYD4qFGLeJF5wzbMGK3SyxQ/bYzLUo3pYu5/DrvROMTFcqUkbIwM66qnsh80kj7CK3ZQEFAPe+XyqDmv4jJKy3NmaiOuHx+5Kzd9GNSje37vBsMO0+tbcCI7axzXjy7aPc28iy+PYXqO64sA43v27Ua0p6j25z1hR2zhlFq5Ar7XtxLf+GFrPzjMSHbmhx0q0uLbsv/Do6PTUCPZf+2/0sm4E+jnQR68NHRH1UvEzR3WawWSByld/qEFVSNkA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=JmQZbrA0TnEkJXQ5uTd15oT74QwQO6Kr+wXFT145FfToY21EAuzswv6UVTo2JW1ZkiFZ6FVTFxVcxtWbRVxl/YVFlX1AnpsMgzbONHLfu08fvgqO2hWLHcUGAORO4PbSlAvmsUmw1BhiFuZDOLr+Z892v45D5mKVGMlX1IOGVSCIV2sZnRXmio7YQOWGff/k5wkzTukbSi2yNyGF1RzzPhULs31rqCfKybS87e6iF/6i17DlAGxi2iFs6TMT7RQVgDCA6otY4r5zdDCpn4uGVjmWZo0TswKrod2PNQ+QWh0nq/idYsOEr4fdpwqFv0Bwvtf94eBdsmPlLf73b8r3sg==
  • Delivered-to: jersey-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/jersey-dev/>
  • List-help: <mailto:jersey-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/jersey-dev>, <mailto:jersey-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/jersey-dev>, <mailto:jersey-dev-request@eclipse.org?subject=unsubscribe>
  • Msip_labels:
  • Thread-index: AQHacGLulaOctuDU5keGwC1zUwdADLEsdNW2
  • Thread-topic: [External] : [jersey-dev] Obtaining Path template for Resource or Sub Resource at ContainerRequestFilter

HI, 
Thanks,
Jan

From: jersey-dev <jersey-dev-bounces@xxxxxxxxxxx> on behalf of Asaf Mesika via jersey-dev <jersey-dev@xxxxxxxxxxx>
Sent: Thursday, March 7, 2024 8:41 AM
To: jersey developer discussions <jersey-dev@xxxxxxxxxxx>
Cc: Asaf Mesika <asaf.mesika@xxxxxxxxx>
Subject: [External] : [jersey-dev] Obtaining Path template for Resource or Sub Resource at ContainerRequestFilter
 
Hi,

I'm trying to find a way to to obtain the full path template as defined by the JAX-RS @Path annotations, at at Jersey filter - ContainerRequestFilter.
The only work-around I found so far was to iterate backwards from Resource to Parent Resource and obtain the path from it. The starting point is UriInfo --> ResourceMethod --> Resource ...

Thanks!

Asaf

Back to the top