"找不到媒体类型= application / json"的JAX-RS MessageBodyWriter执行jar但是mvn:exec有效

时间:2015-11-25 16:10:22

标签: java json web-services maven

我在尝试打包我的maven项目时遇到了问题。我使用mvn:exec开发并测试它,一切正常。 使用以下pom.xml,我生成了带有依赖项的jar文件(使用mvn包)。应用程序启动正常,但当我向日志上的JAX-RS Web服务发送请求时,我得到:

[2015-11-25 16:55:05] [org.glassfish.jersey.message.internal.WriterInterceptorExecutor$TerminalWriterInterceptor aroundWriteTo] SEVERE: MessageBodyWriter not found for media type=application/json, ....

对于像字符串或整数这样的简单对象,在客户端我得到了#34; 415 - 不支持的媒体类型"为json。

我已经尝试将json-media-moxy添加到依赖项或使用java -cp执行jar而不是-jar,但没有任何效果。

这是我的pom:

[...]
<dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.glassfish.jersey</groupId>
                <artifactId>jersey-bom</artifactId>
                <version>${jersey.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.glassfish.jersey.containers</groupId>
            <artifactId>jersey-container-grizzly2-http</artifactId>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.media</groupId>
            <artifactId>jersey-media-json-jackson</artifactId>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.media</groupId>
            <artifactId>jersey-media-moxy</artifactId>
        </dependency>
        [...]
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <inherited>true</inherited>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>java</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>it.project.Application</mainClass>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>it.project.Application</mainClass>
                        </manifest>
                    </archive>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id> <!-- this is used for inheritance merges -->
                        <phase>package</phase> <!-- bind to the packaging phase -->
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <properties>
        <jersey.version>2.22</jersey.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

解决!只需添加

rc.register(JacksonFeature.class);

到我的ResourceConfig以使事情有效。我不知道为什么但是使用mvn包和jar执行球衣不会执行自动发现,所以杰克逊没有注册。

2 个答案:

答案 0 :(得分:1)

尝试添加此依赖项(适应您的球衣版本)

<dependency>
    <groupId>org.glassfish.jersey.media</groupId>
    <artifactId>jersey-media-json-jackson</artifactId>
    <version>2.22</version>
</dependency>

我想没有球衣所需的库来处理maven依赖项中的json数据

<强>更新

我的错误,我刚刚看到你已经拥有它。你是怎么做的?有自定义客户端?如果您使用的是自定义客户端,请尝试使用

Client client = ClientBuilder.newClient().register(JacksonFeature.class);

答案 1 :(得分:1)

解决!只需添加

rc.register(JacksonFeature.class); 到我的ResourceConfig让事情发生。我不知道为什么但是使用mvn包和jar执行球衣不会执行自动发现,所以杰克逊没有注册。