Tagged Questions
0
votes
0answers
13 views
When using jersey jax-rs, is there a way to differentiate between fields sent as null and fields not sent at all
I'm using Jersey JAX-RS with Jackson (for serialization/deserialization) to implement a set of REST services. When a caller performs an update operation (ex. a PUT), I've generally followed the ...
-1
votes
0answers
17 views
Does Jersey work with an OSGi container [closed]
Is there a simple example showing how to use Java Jersey JAX-RS with OSGi using Blueprint? A complete example with a MANIFEST.MF and the blueprint.xml files?
Thanks.
0
votes
1answer
26 views
Jersey resource not resolving in OSGI
I have been following this tutorial video which shows how to run a jersey server(EDIT: A JAX-RS server via Apache Wink, see accepted answer) in OSGI. It is a short video and the process seems mostly ...
0
votes
0answers
26 views
Conditional cache headers not working in JAX-RS
I am trying from a long time to implement Conditional cache headers using JAX-RS but unfortunately the caching is not working, everytime the DB call is made irrespective of whether the caching is done ...
-1
votes
1answer
14 views
Building Jersey web services executable
I have developed Jersey web services for the first time. Right now I am running my services on my pc only using eclipse. How can I Make executable file for services so that I can install it on other ...
0
votes
0answers
48 views
Can you do traditional Servlet Filtering with JAX-RS/Jersey?
Imagine you have a filter that starts a database transaction, processes the request, and then then attempts to commit the transaction.
doFilter(...) {
...
transaction.begin();
...
0
votes
0answers
17 views
Can @GET define Consumes Content-Type for JAX-RS implementation?
I have been trying few samples on JAXRS (used Jersey for this example). The following is a sample stub implemenatation I have:
@Path("stubservice")
public class StubImpl
@GET
...
0
votes
2answers
48 views
How do I load and store global variables in Jersey/Glassfish
I am creating a RESTful Web Service that wraps an antiquated vendor API. Some external configuration will be required and will be stored on the server either in a file or rdbms. I'm using Jersey ...
2
votes
1answer
70 views
Why @PostConstruct called twice on @Singleton
I am running a simple .war file under Glassfish 4.0-b87 that was created in Eclipse Kepler M6 using M2E as a simple project with Dynamic Web Module facet added, using Oracle Java 7 JDK/JVM.
There is ...
0
votes
1answer
27 views
Can Java EE Application Make HTTP Calls?
Can a Java EE Application -- a Servlet or a Session Bean -- make HTTP calls and still conform to portability standards? (assuming that the caller gracefully handles communication failure or ...
0
votes
0answers
16 views
JAX-RS Jersey Client on Websphere 8.5
I'm trying to deploy jax-rs client application that use jersey on was 8.5.
I was hoping I won't need to pack jersey jars inside my war, because was will provide them.
But I'm getting this error when ...
0
votes
2answers
34 views
Error in uploading file to the server using Jersey
I am trying to upload file to the server from android using Jersey Web Service. I have written the code but there is some problem in the code. It shows error-
A message body reader for Java class ...
1
vote
0answers
75 views
Can I use @RolesAllowed on RESTful Resources implemented on Apache CXF?
My question is
"Can I use @RolesAllowed on RESTful Resources implemented on CXF ?".
First of all, I explain the context causing this question.
I'm working at some projects in which developers have ...
1
vote
0answers
55 views
Jersey @Context scope
I have a hard time understanding the injection mechanism of Jersey. The JAX-RS Specification (http://jsr311.java.net/nonav/releases/1.1/spec/spec3.html#x3-520005) states that injection via @Context is ...
0
votes
1answer
38 views
How to check the role of an authenticated user in a Jersey web service
Environment: Jersey 1.17 with GlassFish 3.1.2.2, JDK 6u31.
web.xml security segment:
<security-constraint>
<display-name>SSL transport</display-name>
...
0
votes
2answers
79 views
How to extract ObjectMapper from JAX-RS Client?
I am using Jersey JAX-RS client (version 2.0). I know it is using a Jackson ObjectMapper to generate and parse JSON. I want to use that same object to generate JSON for some java classes so that I can ...
0
votes
1answer
55 views
JAX-RS (Jersey) Admin Only API Calls
This may turn out to be more of a style question, but I'm a little stumped on how best to design a RESTful API.
Let's say I want to provide the following API calls:
GET /player
Returns the current ...
0
votes
1answer
36 views
Cannot serialize JPA bean due to presence of proxies
I am trying to expose an object as XML using JAX-RS.
I have a class called Client and I am returning its instance like this:
@Transactional(readOnly=true)
@GET
...
1
vote
0answers
33 views
Checking Principal-user by Injected SecurityContext inside the constructor of a web resource
I'm relatively new to Jersey and JAX-RS, but I can't find my way in the documentation about the use of the SecurityContext inside the constructor of a Resource.
Our OAUTH implementation is currently ...
0
votes
2answers
58 views
How do you configure a JAX-RS MessageBodyWriter on a per-request basis?
Essentially, I have a MessageBodyWriter that writes objects as JSON, and I'd like to be able to control some aspects of the output based on which resource method handled the request. However, the ...
0
votes
2answers
74 views
In Jersey, differences between returning Response and Bean or Collection of Beans
I am working on building a REST api. My question is, when using Jersey, what are the differences between my services building and returning a Response object or returning the the bean or collection. I ...
1
vote
2answers
71 views
How to use @HEAD in jax-rs using Jersey API or any other jax-rs API?
How to use @HEAD in jax-rs using Jersey API or any other jax-rs API ? please give me sample.
0
votes
2answers
31 views
Why does the presence of QueryParams affect Jersey matching order?
I have two Jersey methods that look something like this
@GET
@Path("/mine")
@Produces(MediaType.APPLICATION_JSON)
List<MyStuff> getAllMyStuff();
@GET
@Path("/{id}")
...
0
votes
0answers
26 views
Jersey Obfuscating Collections in JSON Output
In my code I can see I am returning a valid Object. This object happens to contain a collection of 'user comments'. This collection is valid and filled with entries right before I return the Response ...
0
votes
0answers
51 views
Testing JAX-RS using rest-assured framework, different Application object for test context?
I am developing an application using JAX-RS (Jersey, to be precise), some of REST resources will of course involve using services dependent on some external servers/services eg. SMTP servers or LDAP.
...
0
votes
0answers
39 views
XMLStreamException Jax-Rs on Glassfish
Does anybody know what that means. Is the xml wrong formatted?
...
1
vote
1answer
72 views
POJOMappingFeature for HTTP errors?
I have com.sun.jersey.api.json.POJOMappingFeature set to true and it works fine for HTTP 200 responses.
However, when my application returns an error, it shows text/html response with error headline ...
0
votes
0answers
24 views
Control characters duplicated in jersey request string
I have a string containing a control character 0x0B that I am passing to a jersey server. When the server receives the string over network, the ctrl chars are replicated. Any idea why ?
CC = Control ...
0
votes
0answers
89 views
Rest Service String array parameter as a @QueryParam
I want to have a rest service method that should take String array as a Query Parameter , Currently I have implemented that method as taking a List as a required QueryParameter but I want to have ...
0
votes
1answer
73 views
Bean Validation for POST requisition in JAX-RS with Jersey implementation
I'm using the Jersey implementation for JAX-RS, and I was looking for an example where I can use the Bean Validation in POST requisitions. I have this operation, for example:
@POST
...
0
votes
0answers
43 views
Using Jersey to modify and route the HTTP REST request
I need to create a REST proxy to route HTTP requests based on headers, query parameters and path parameter information.
I am using Jersey's ContainerRequestFilter and ResourceFilter to intercept the ...
0
votes
1answer
55 views
Long string value in JSON
I'm writing a MessageBodyWriter for java.util.Properties.
@Override
public void writeTo(final Properties t, final Class<?> type,
final Type genericType, final Annotation[] ...
0
votes
1answer
73 views
Glassfish throws MessageException if I use Response.ResponseBuilder
My program used to work, but after I have updated NetBeans and Glassfish it stated to throw:
com.sun.jersey.api.MessageException: A message body writer for Java class java.util.LinkedList, and Java ...
0
votes
1answer
101 views
Google App Engine + Jersey + JSP results in NOT_FOUND
Currently I'm working on my first Google App Engine application. I use a combination of Jersey (JAX-RS) and JSP 2.0 with custom tags to separate the lay-out from the application logic.
The ...
0
votes
2answers
39 views
Jersey: saving data in-memory
I am building a simple REST web service using Java and Jersey. I want to store some data in-memory that can be accessed during the time that the server is online. For example:
...
0
votes
0answers
37 views
Where can one find advanced Jersey documentation?
Does there exist documentation for using Jersey's advanced features? I'm aware of the Jersey User Guide, but it seems to leave a lot of topics uncovered. The Javadocs are very terse or absent and ...
0
votes
0answers
62 views
RESTFul resource URL custamization in Java EE
I am using Jersey (V 1.17) in my Java EE project.
I map the relevant Jersey Servlet to the URL pattern as follows:
<url-pattern>/resources/*</url-pattern>
Now the resource URLs of my ...
1
vote
1answer
82 views
Serializing POJOs to/from JSON using jersey: weird nesting of elements
I got the following structure of my classes:
@XmlRootElement(name="rootClass")
@XmlAccessorType(XmlAccessType.FIELD)
public class rootClass {
@XmlElementWrapper(name="children")
...
0
votes
1answer
65 views
Jersey JSON upload failure
I have an entity class looks like this.
@XmlRootElement
public class ImageSuffix {
@XmlAttribute
private boolean canRead;
@XmlAttribute
private boolean canWrite;
@XmlValue;
...
0
votes
0answers
354 views
Jersey: The ResourceConfig instance does not contain any root resource classes
I just tried to write a small REST example with Jersey. It compiles fine, but it does not work.
The error is:
cannot Deploy RestTestApp Deployment Error for module: RestTestApp:
Exception while ...
1
vote
2answers
99 views
Basic JAX-RS servlet in OSGi 4.2 environment
What is the simplest recipe to create a basic JAX-RS environment in an OSGi 4 container, without resorting to heavyweight solutions like Apache CXF.
Although it seems to me that registering a Jersey ...
2
votes
0answers
71 views
Page not found error when trying to use encryption in JAX-RS Jersey REST
I'm using Eclipse to implement REST web services using Jersey. I want all communications to be in https. So, I edited my web.xml to be
<?xml version="1.0" encoding="UTF-8"?>
<web-app ...
0
votes
1answer
101 views
Unable to nest custom Jersey providers
Jersey throws an exception when I try to reference one custom provider from another.
This test case
public class NestedProvidersTest extends JerseyTest {
public NestedProvidersTest() throws ...
0
votes
0answers
26 views
What is the difference between Jersey DefaultResourceConfig.getClasses() and .getProviderClasses()?
I am able to register my custom provider by calling DefaultResourceConfig.getClasses().add(MyCustomProvider.class). But if I try with .getProviderClasses() the provider isn't found.
Which makes me ...
1
vote
1answer
74 views
Map multiple query parameters in jax-rs
I am using Jersey as the implementation library.
@Path("books")
public class Sample {
@GET
public List<Book> getBooks(@Context UriInfo uriInfo)
{
...
0
votes
1answer
21 views
Jersey 2 - JAXB
Using Jersey 2 m13-3 in Tomcat 7, I'm trying to post XML and have JAXB automatically unmarshal it.
My method signature is something like:
@POST
@Consumes(MediaType.APPLICATION_XML)
@Produces( ...
1
vote
2answers
97 views
Is there a 'standard' way to use Dependency Injection with Java - specifically with JAXRS Jersey
I have some services that I would like to change from using a factory to using a dependency injection framework.
With Java 6+ is there a 'standard' way that this can be achieved without using third ...
2
votes
1answer
254 views
How to get Google Guice working with JaxRS (Jersey)
I have a basic JAXRS service that I can expose easily, but for once I wish to use a dependency injection API and I suspect Google Guice will be one of the best. With this in mind, I have tried to ...
0
votes
0answers
110 views
Generated WADL for a List of Resources
I am struggling for a couple of days now with the following problem. I searched quite a lot for an answer, here in SO, in jersey mailing lists and the net in general, but weren't able to find answer ...
0
votes
0answers
45 views
messagebodyreader jersey
I am making a java client for restful webservice and I want to send a string in request body.
This is my class.
public class params {
private String test;
public String getTest() {
...


