I'm using Jersey for RESTFul Web Services in Java and I'm trying to get the caller IP address within the Java Method, without passing as a parameter.
I tried several other posts with similar questions in StackOverflow but none of them worked. So far I got an error of injection, and I don't know how to solve it.
This piece of code needs to run inside a Tomcat 8 container in one server and JBoss in another server. But when I deploy the project to any of them, the same error is thrown while starting container:
SEVERE: The following errors and warnings have been detected with resource and/or provider classes: SEVERE: Missing dependency for field: javax.xml.ws.WebServiceContext com.adamiworks.restfultutorial.JsonService.webServiceContext
This error also occurs when running from eclipse to Tomcat 8.
Can anyone point me out where I'm wrong?
I have this class:
package com.adamiworks.restfultutorial;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.xml.ws.WebServiceContext;
import javax.xml.ws.handler.MessageContext;
@Path("/json")
public class JsonService {
@Context
WebServiceContext webServiceContext;
@GET
@Path("/{param}")
@Produces(MediaType.APPLICATION_JSON)
public JsonObject getMsg(@PathParam("param") String msg) {
HttpServletRequest request = this.getHttpContext();
String clientIpAddress = request.getHeader("X-FORWARDED-FOR");
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date d = null;
try {
d = sdf.parse("1984-01-08");
} catch (ParseException e) {
e.printStackTrace();
}
Cliente c = new Cliente();
c.setNome("Anyone");
c.setDataNascimento(d);
JsonObject o = new JsonObject(msg, c);
o.setText("IP=" + clientIpAddress);
return o;
}
private HttpServletRequest getHttpContext() {
MessageContext mc = webServiceContext.getMessageContext();
HttpServletRequest request = (HttpServletRequest) mc.get(MessageContext.SERVLET_REQUEST);
return request;
}
}
With this pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.adamiworks</groupId>
<artifactId>restful-tutorial</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>adamiworks restful-tutorial</name>
<description>restful-tutorial ftw</description>
<properties>
<jdk.version>1.8</jdk.version>
<jersey.version>1.19.3</jersey.version>
<javax.ws.rs.version>1.1.1</javax.ws.rs.version>
</properties>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<warSourceDirectory>webapp</warSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.servlet</artifactId>
<version>3.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-bundle</artifactId>
<version>${jersey.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>${jersey.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
<version>${jersey.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>${jersey.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-servlet</artifactId>
<version>${jersey.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>${javax.ws.rs.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>