URL matrix parameters vs. query parameters
I’m wondering whether to use matrix or query parameters in my URLs. I found an older discussion to that topic not satisfying. Examples … Read more
I’m wondering whether to use matrix or query parameters in my URLs. I found an older discussion to that topic not satisfying. Examples … Read more
For java.util.Date when I do @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = “dd/MM/yyyy”) private Date dateOfBirth; then in JSON request when I send { {“dateOfBirth”:”01/01/2000″} … Read more
I’m learning JAX-RS (aka, JSR-311) using Jersey. I’ve successfuly created a Root Resource and am playing around with parameters: @Path(“/hello”) public class HelloWorldResource … Read more
I’m writing a REST web app (NetBeans 6.9, JAX-RS, TopLink Essentials) and trying to return JSON and HTTP status code. I have code … Read more
What response code should be passed to client in case of following scenarios? Invalid data passed while user registration like wrong email format … Read more
I am not asking the question that is already asked here: What is the difference between @PathParam and @QueryParam This is a “best … Read more
I’m looking for a way to enable token-based authentication in Jersey. I am trying not to use any particular framework. Is that possible? … Read more
I am trying to get a web service to work which returns a JSON (JAX-RS with jersey implementation on Tomcat). However, I am … Read more