【发布时间】:2016-12-05 23:57:05
【问题描述】:
我在 Java 中将 Jersey 用于 RESTFul Web 服务,我试图在 Java 方法中获取调用方 IP 地址,而不作为参数传递。
我在 StackOverflow 中尝试了其他几篇有类似问题的帖子,但都没有奏效。目前遇到注入错误,不知道怎么解决。
这段代码需要在一台服务器的 Tomcat 8 容器中运行,而在另一台服务器的 JBoss 中运行。但是当我将项目部署到其中任何一个时,启动容器时会引发相同的错误:
严重:在资源和/或提供程序类中检测到以下错误和警告: 严重:缺少字段的依赖项:javax.xml.ws.WebServiceContext com.adamiworks.restfultutorial.JsonService.webServiceContext
从eclipse运行到Tomcat 8时也会出现这个错误。
谁能指出我哪里错了?
我有这门课:
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;
}
}
有了这个 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>
【问题讨论】:
标签: java rest maven dependency-injection