我有一个使用(application / json)并生成(application / json)的restful服务(post)。此服务的单个参数是带注释的java对象。
我正在使用org.jboss.resteasy.client.ClientRequest将请求发送给服务。但是,我在客户端获得此异常并且异常:
找不到内容类型application / json类型的编写器。
这是否意味着我缺少一些图书馆罐子,或者我必须为application / json编写自己的编写器?
我正在使用resteasy 2.3.3.Final
以下是我添加到我的pom中的各种依赖项,我认为可能与之相关:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>2.3.3.Final</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>2.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson-provider</artifactId>
<version>2.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.3.0</version>
</dependency>
马特
答案 0 :(得分:17)
如果您计划使用实现JAX-RS 2.0的较新版本的resteasy,以下依赖项应该可以解决您的问题:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.0.5.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>jaxrs-api</artifactId>
<version>3.0.5.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>3.0.5.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId>
<version>3.0.5.Final</version>
</dependency>
答案 1 :(得分:3)
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jackson-mapper-asl.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
<scope>runtime</scope>
</dependency>
这已经足够了。
请参阅此处:http://howtodoinjava.com/2012/12/15/how-to-write-restful-webservices-using-spring-3-mvc/
答案 2 :(得分:1)
我正在使用所有包含的库(maven项目),但是当作为由maven-assembly-plugin
生成的独立应用程序运行时,我得到了相同的错误,但是从IDE运行时它没有问题。
我也遇到了log4j2日志记录的问题,因为它在作为独立的胖jar应用程序运行时完全被破坏(在IDE中完美运行),所以我首先关注解决这个问题:
Log4j2 configuration not found when running standalone application builded by shade plugin
所以我通过从maven-assembly-plugin
迁移到maven-shade-plugin
答案 3 :(得分:1)
如果您在项目中应用了所有必需的依赖项,请检查您的类是否实现了Serializable。
@XmlRootElement
public class MyClass implements Serializable {
//filds
}
也许它可以解决你的问题。
答案 4 :(得分:0)
如果你使用的是 maven-assembly-plugin 很可能会出现这个问题。之前的答案帮助我解决了这个问题,还有 this post 和 this post。
我删除了这个
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.example.MainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
为了迁移到 maven-shade-plugin,我将其替换为:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.example.MainClass</mainClass>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
<resource>META-INF/services/javax.ws.rs.ext.Providers</resource>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>