gpt4 book ai didi

java - 尝试访问 pojo 时出现 NoMessageBodyWriterFoundFailure

转载 作者:行者123 更新时间:2023-12-02 10:48:47 25 4
gpt4 key购买 nike

我正在尝试将 web 服务项目从 jersey 迁移到 Resteasy,但遇到了一个奇怪的错误:

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 应该使其默认为某些内置编写器/读取器。

最佳答案

你看到了吗this link

它表示添加@XmlElement(required = true)

另一件事是这看起来像一个泛型类型。 RESTEasy 是否不喜欢或无法处理使用泛型的对象?

关于java - 尝试访问 pojo 时出现 NoMessageBodyWriterFoundFailure,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52338429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com