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 37E9C200B41 for ; Thu, 23 Jun 2016 07:00:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 36CF5160A36; Thu, 23 Jun 2016 05:00:24 +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 A4E65160A64 for ; Thu, 23 Jun 2016 07:00:23 +0200 (CEST) Received: (qmail 11219 invoked by uid 500); 23 Jun 2016 05:00:22 -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 11165 invoked by uid 99); 23 Jun 2016 05:00:22 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jun 2016 05:00:22 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 12C112C14F8 for ; Thu, 23 Jun 2016 05:00:22 +0000 (UTC) Date: Thu, 23 Jun 2016 05:00:22 +0000 (UTC) From: "Neal Hu (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CXF-6950) Support the per-request scope resouce bean via Spring configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 23 Jun 2016 05:00:24 -0000 Neal Hu created CXF-6950: ---------------------------- Summary: Support the per-request scope resouce bean via Spring configuration Key: CXF-6950 URL: https://issues.apache.org/jira/browse/CXF-6950 Project: CXF Issue Type: Improvement Components: JAX-RS Affects Versions: 3.1.6 Environment: Mac Reporter: Neal Hu Fix For: 3.2.0, 3.1.8 http://stackoverflow.com/questions/11889997/how-to-send-a-array-in-url-request Spring MVC and PHP support send comma separated array in the url request: http://localhost:8080/MovieDB/GetJson?name=Actor1,Actor2,Actor3&startDate=20120101&endDate=20120505 @RequestMapping(value = "/GetJson", method = RequestMethod.GET) public void getJson(@RequestParam("name") String[] ticker, @RequestParam("startDate") String startDate, @RequestParam("endDate") String endDate) { //code to get results from db for those params. } Now jax-rs only support below: http://localhost:8080/JerseyPojo/jaxrs/BasicResource/test?nameList=xx&nameList=xxx&nameList=ddd @Path("/test") @GET public String getQueryList([~getadroit@gmail.com] When we migrate from Spring MVC to jax-rs, found problem. Neal -- This message was sent by Atlassian JIRA (v6.3.4#6332)