Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2D9E3200D08 for ; Thu, 7 Sep 2017 03:55:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2C06D161B12; Thu, 7 Sep 2017 01:55:14 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 72159161704 for ; Thu, 7 Sep 2017 03:55:13 +0200 (CEST) Received: (qmail 82942 invoked by uid 500); 7 Sep 2017 01:55:12 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 82931 invoked by uid 99); 7 Sep 2017 01:55:12 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2017 01:55:12 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 5AAA8CD8AB for ; Thu, 7 Sep 2017 01:55:12 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id EMl9UYDP5PH3 for ; Thu, 7 Sep 2017 01:55:11 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 62FA26104B for ; Thu, 7 Sep 2017 01:55:04 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id B03CDE046B for ; Thu, 7 Sep 2017 01:55:02 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 8178B24147 for ; Thu, 7 Sep 2017 01:55:01 +0000 (UTC) Date: Thu, 7 Sep 2017 01:55:01 +0000 (UTC) From: "John D. Ament (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Comment Edited] (CXF-7493) Cannot define a List or List as a query param MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 07 Sep 2017 01:55:14 -0000 [ https://issues.apache.org/jira/browse/CXF-7493?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16156304#comment-16156304 ] John D. Ament edited comment on CXF-7493 at 9/7/17 1:54 AM: ------------------------------------------------------------ Ok, well I figured out where the delta's coming from. the issue starts from {{ResourceUtils.evaluateResourceClass}} In Weld, when you do {{m.getAnnotations()}} it includes the {{@GET}} (and other) annotation. In OWB, that annotation doesn't come back. Since it doesn't come back in OWB, its falling back into the scan superclass logic, which returns the non-proxied method. I'm wondering if a check should be add for {{isSynthetic()}}, but not sure. What Weld's doing here isn't wrong, just a bit surprising. was (Author: johndament): Ok, well I figured out where the delta's coming from. In Weld, when you do {{m.getAnnotations()}} it includes the {{@GET}} (and other) annotation. In OWB, that annotation doesn't come back. Since it doesn't come back in OWB, its falling back into the scan superclass logic, which returns the non-proxied method. I'm wondering if a check should be add for {{isSynthetic()}}, but not sure. What Weld's doing here isn't wrong, just a bit surprising. > Cannot define a List or List as a query param > ----------------------------------------------------------- > > Key: CXF-7493 > URL: https://issues.apache.org/jira/browse/CXF-7493 > Project: CXF > Issue Type: Bug > Affects Versions: 3.1.12 > Reporter: John D. Ament > > When defining a resource method like: > {code} > public JsonObject verifyInjectedCustomIntegerArray(@QueryParam("value") List array) > public JsonObject verifyInjectedCustomDoubleArray(@QueryParam("value") List array) > {code} > The following stacktrace is shown when parsing the body: > {code} > java.lang.NullPointerException > at org.apache.cxf.jaxrs.utils.InjectionUtils.injectIntoCollectionOrArray(InjectionUtils.java:904) > at org.apache.cxf.jaxrs.utils.InjectionUtils.createParameterObject(InjectionUtils.java:1003) > at org.apache.cxf.jaxrs.utils.JAXRSUtils.readQueryString(JAXRSUtils.java:1196) > at org.apache.cxf.jaxrs.utils.JAXRSUtils.createHttpParameterValue(JAXRSUtils.java:872) > at org.apache.cxf.jaxrs.utils.JAXRSUtils.processParameter(JAXRSUtils.java:842) > at org.apache.cxf.jaxrs.utils.JAXRSUtils.processParameters(JAXRSUtils.java:793) > at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.processRequest(JAXRSInInterceptor.java:212) > at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.handleMessage(JAXRSInInterceptor.java:77) > at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308) > at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121) > at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:263) > at org.apache.cxf.transport.servlet.ServletController.invokeDestination(ServletController.java:234) > at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:208) > at org.apache.cxf.transport.servlet.ServletController.invoke(ServletController.java:160) > at org.apache.cxf.transport.servlet.CXFNonSpringServlet.invoke(CXFNonSpringServlet.java:189) > at org.apache.cxf.transport.servlet.AbstractHTTPServlet.handleRequest(AbstractHTTPServlet.java:299) > at org.apache.cxf.transport.servlet.AbstractHTTPServlet.doGet(AbstractHTTPServlet.java:223) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:687) > at org.apache.cxf.transport.servlet.AbstractHTTPServlet.service(AbstractHTTPServlet.java:274) > at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:85) > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129) > {code} -- This message was sent by Atlassian JIRA (v6.4.14#64029)