You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Neal Hu (JIRA)" <ji...@apache.org> on 2016/06/23 05:00:22 UTC

[jira] [Created] (CXF-6950) Support the per-request scope resouce bean via Spring configuration

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)