尝试访问pojo时NoMessageBodyWriterFoundFailure

问题描述 投票:0回答:1

我正在尝试将一个Web服务项目迁移到从泽西重新安装,我收到一个奇怪的错误:

ERROR [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-42) RESTEASY002005: Failed executing GET /directors/tmlist/dirUsr: org.jboss.resteasy.core.NoMessageBodyWriterFoundFailure: Could not find MessageBodyWriter for response object of type: com.company.sales.beans.Resource of media type: application/json

我在网上找到的所有东西都告诉我,我需要在pojo中添加一个注释来引起问题,但它似乎没有产生任何差别。

我正在使用的pojo是:

package com.company.sales.beans;

import javax.xml.bind.annotation.*;
import java.util.List;

@XmlRootElement
public class Resource<T> {
    @XmlAnyElement(lax = true)
    @XmlElement(name = "content")
    private List<T> m_Content;
    @XmlAttribute(name = "type")
    private String m_Type;
    @XmlAttribute(name = "src")
    private String m_Source;
    @XmlElementRef(name = "links")
    private List<Link> m_Links;

    /**
     *
     */
    public Resource() {
        m_Content = null;
        m_Type = null;
        m_Source = null;
    }

    /**
     * @return the m_Content
     */
    public List<T> getContent() {
        return m_Content;
    }

    /**
     * @param m_Content the m_Content to set
     */
    public void setContent(List<T> m_Content) {
        this.m_Content = m_Content;
    }

    /**
     * @return the m_Type
     */
    public String getType() {
        return m_Type;
    }

    /**
     * @param m_Type the m_Type to set
     */
    public void setType(String m_Type) {
        this.m_Type = m_Type;
    }

    /**
     * @return the m_Source
     */
    public String getSource() {
        return m_Source;
    }

    /**
     * @param m_Source the m_Source to set
     */
    public void setSource(String m_Source) {
        this.m_Source = m_Source;
    }

    /**
     * @return the m_Links
     */
    public List<Link> getLinks() {
        return m_Links;
    }

    /**
     * @param m_Links the m_Links to set
     */
    public void setLinks(List<Link> m_Links) {
        this.m_Links = m_Links;
    }


}

这是由我工作的公司的一名前雇员创建的,据我所知,他们使用的是以前的图书馆(jersey 1.17)正常工作。我不完全确定为什么resteasy仍在抱怨丢失的消息正文作者,因为我发现一些不同的网站声称添加@XmlRootElement应该使它默认为某些内置的编写器/阅读器。

java jax-rs resteasy
1个回答
0
投票

你看到this link了吗?

它说要添加@XmlElement(required = true)

另一件事是它看起来像一个泛型类型。可能是RESTEasy不喜欢或不能处理使用泛型的对象?

© www.soinside.com 2019 - 2024. All rights reserved.