Hot answers tagged jax-rs
4
As an alternative to Enunciate, you might also consider MireDot. It grew from a tool we use within our own company and it's free to use for open source projects. It does exactly what you describe: it combines jaxrs annotations and existing javadoc comments to generate a rest api. It works as a maven plugin which you just have to add to your project. Jaxb ...
3
It looks like you have multiple bundles that export the Servlet API packages (e.g. 588, 589 and 622, possibly others as well). Therefore the package imported by your bundle may be different from the one imported by the Apache Wink bundle. Under normal Java class-loading rules, two packages are only considered to be "the same" if they have the same name AND ...
2
You cannot have a REST-method, which is annotated with more than one of the @GET , @POST , @PUT , @DELETE annotations, because this is conflict with the HTTP specification.
Also, if myMethod2 just returns the result of myMethod, you can use the only one of them in you application (for instance, myMethod), because basically myMethod2 just reads and ...
2
You can make HTTP calls from Servlet or Session Bean (as long as you are not trying to do that in a separate thread). In general, you can open client socket in EJB Bean or Servlet.
JAX-RS 2.0, which is a part of Java EE 7 has client API (see this excelent article: http://www.oracle.com/technetwork/articles/java/jaxrs20-1929352.html)
2
@Singleton @Startup EJB matches your requirements.
@Singleton
@Startup // initialize at deployment time instead of first invocation
public class VendorConfiguration {
@PostConstruct
void loadConfiguration() {
// do the startup initialization here
}
@Lock(LockType.READ) // To allow multiple threads to invoke this method
...
2
Not a JAX-RS expert at all, so this is just a guess.
How could Jersey decide which method to invoke when a GET request comes in if you don't set @Consumes(MediaType.APPLICATION_JSON)?
Both methods answer to GET requests, on the same path, accept any media type, and produce the same media type. So my guess is that Jersey can't decide (other than randomly) ...
2
It's probably not so much a bug as a limitation of the Servlet spec. How a JAX-RS @ApplicationPath is handled is implementation specific, and I can't speak for all implementations, but I'd guess the typical approach is to simply use it as a servlet URL pattern. Taking a look at Jersey's ServletContainerInitializer implementation as one example, you'll find ...
1
This worked fine with me
url:http://example.com/rest/muqsith/get-file?filePath=C:\Users\I066807\Desktop\test.xml
@GET
@Produces({ MediaType.APPLICATION_OCTET_STREAM })
@Path("/get-file")
public Response getFile(@Context HttpServletRequest request){
String filePath = request.getParameter("filePath");
if(filePath != null && ...
1
Ad 1. Yes, you can use CAS or OpenID with OAuth for authorization
Ad 2. That's common approach in the "true REST" applications world - each call is stateless, everytime user credentials needs to be passed and checked.
Ad 3. If JSF application contains only data that can be accessible without authentication (JSFs are plain templates) that's reasonable ...
1
In case you want to change the status code because of an exception, with JAX-RS 2.0 you can implement an ExceptionMapper like this. This handles this kind of exception for the whole app.
@Provider
public class UnauthorizedExceptionMapper implements ExceptionMapper<EJBAccessException> {
@Override
public Response toResponse(EJBAccessException ...
1
First of all, Amdatu is not based on Jersey. Jersey is one of the many JAX-RS implementations available. Amdatu is based on Apache Wink. This shouldn't really matter to you however, since you should be programming to the standard anyway.
Amdatu looks for services registered as Object.class in the service registry, and checks if the registered service is ...
1
You need to annotate your Person class like this:
@XmlRootElement(name="Person")
@XmlAccessorType(XmlAccessType.PUBLIC_MEMBER)
public class Person {
private String name;
@XmlElement (name = "name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
1
You can use a listener for init the variables and set to the context as attribute before the web application start, something like the following:
package org.paulvargas.shared;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
public ...
1
Note: I'm the EclipseLink JAXB (MOXy) lead and a member of the JAXB (JSR-222) expert group.
In EclipseLink 2.5 (get it here: http://www.eclipse.org/eclipselink/downloads/milestones.php) we added a new feature to MOXy JAXB called Object Graphs. Object Graphs allow to programatically or through metadata select a subset of properties that you want to ...
1
I will not try to dig into the XSD too. Here my advice :
1- By default, JAXB shall not serialize null fields.
So you can simply nullify fields, you don't want to serialize.
To be a bit more clean, I would recommend you to nullify copies of your business objects. Just to be sure that you won't have side effects in the applications.
2- You can also make ...
1
In your curl-command, you are posting form data along with the Content-Type: application/json. Clearly this data is not valid JSON, hence the 400 bad request.
If you want to post form data, you need to use the content type application/x-www-form-urlencoded
1
The primary usecase for the interceptors are not validation. I would suggest that you either validate your input in your JAX-RS annotated methods, or check out the bean validation integration they provide.
1
Quoting the book RESTful Java with JAX-RS:
JAX-RS defines five annotations that map to specific HTTP operations:
@javax.ws.rs.GET
@javax.ws.rs.PUT
@javax.ws.rs.POST
@javax.ws.rs.DELETE
@javax.ws.rs.HEAD
(...)
The @GET annotation instructs the JAX-RS runtime that this Java method
will process HTTP GET requests to the URI. You ...
1
Below is how you can currently map this use case using MOXy. I have opened the following enhancement request to make this use case easier to map:
http://bugs.eclipse.org/407460
REFERENCED OBJECT
Embedded ID (EmployeeId)
Below is an example of an embedded ID class:
import java.math.BigDecimal;
import javax.persistence.*;
import ...
1
Schema validation is set at the JAX-RS service level, so you can't do what you want directly (without adding to the schema) but you can have multiple <jaxrs:server> instances in the same webapp with different paths. That should let you set up what you want without too much trouble. (This is where the more sophisticated configuration approach of CXF ...
1
Jersey does not actually explicitly configure an ObjectMapper instance, rather it delegates to JacksonJsonProvider, which in turn uses a default mapper instance. You can trace through the JacksonProviderProxy code to see how it works. You can create and customize a shared mapper to be used throughout your application by defining a context resolver:
...
1
I would not go with having a seperate resource for admin calls.
If the User making the call doesnt have the rights to POST or PUT to the specific resource, do return a 401-Unauthorized Status Code. That's, in my opinion, the only proper and intended way of doing it.
EDIT after Comment:
As you mentioned, you have your security constraints defined via ...
1
Your exception suggest that the issue come from the constructor of PoiDao that prevent the PoiResource to get build.
In resteasy the interceptor method is called after the resource instanciation and before resource method call.
As your resource fail to instanciate, thus the interceptor is never called.
1
The differences are explained in the JAX-RS specification:
3.3.3 Return Type
Resource methods MAY return void, Response, GenericEntity, or another Java type, these return types are mapped to a response entity body as follows:
void
Results in an empty entity body with a 204 status code.
Response
Results in an entity body mapped from the ...
1
There is no diference if you want to return always the response 200 - OK , catching and manipulate all the exceptions that may occur before of after your method return the result, with interceptions or WebApplicationException. So, both of these methods will result the same responses.
The only diference is at specific scenarios, like returning null objects, ...
1
Not sure why you need a MessageBodyWriter Provider with per-request basis. If you just want to distinguish which methods are with JSON ouput and which are not, then jersey-json does already support.
And although the @Provider is singleton. You still can use per-request object within it like below.
@Provider
public class StViewProcessor implements ...
1
The JAX-RS 1.1 spec requires that implementations support singleton providers and allows support for other lifecycles but doesn't suggest anything else along those lines. As far as I'm aware, pure Jersey doesn't support anything beyond singletons. With the jersey-spring contrib module, you get support for using Spring as Jersey's IoC container (where it gets ...
1
This is also controlled by a feature on the ObjectMapper (at least in 1.9.11, and possibly earlier):
ObjectMapper om = new ObjectMapper();
om.configure(SerializationConfig.Feature.WRITE_DATES_AS_TIMESTAMPS, false);
om.writer().writeValue(System.out, objectWithDateProperty);
I don't see how to declaratively do the equivalent on the object definition ...
1
You should try the ExceptionMapper from Jersey:
First, your Custom Exception:
public class UnauthorizedException extends RuntimeException {
public UnauthorizedException() {}
}
Then, your Entity, you want to send back:
@XmlRootElement
public class ErrorMessage{
@XmlElement
private String message;
public ErrorMessage(String message){
...
1
This use case is often handled by using dedicated data transfer objects at the resource level which will be mapped by frameworks like Dozer to the JPA entities. Besides the obvious boilerplate code, there are advantages of this approach:
If the resources follow the HATEOAS principle, the entities must be enriched with further REST specific information like ...
Only top voted, non community-wiki answers of a minimum length are eligible


