JAX-RS demo not working with return type String
-----------------------------------------------
Key: CXF-1240
URL: https://issues.apache.org/jira/browse/CXF-1240
Project: CXF
Issue Type: Bug
Affects Versions: 2.1
Reporter: Jervis Liu
Assignee: Jervis Liu
JAX-RS demo does not work when a resouce method returns String, See below:
@javax.ws.rs.HttpMethod("GET")
@javax.ws.rs.UriTemplate("{section}/{id}")
public String findBySectionAndId(@javax.ws.rs.UriParam("section")
String section, @javax.ws.rs.UriParam("id")
String id) {
return "Hello World - section is " + section + ", id is " + id + "\n";
}
FWIW I had to change type of the "Id" parameter from an int to a String not to
throw a IllegalArgumentException
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.