web-dev-qa-db-ja.com

JavaクラスJava.util.ArrayList ...およびMIMEメディアタイプtext / xmlのメッセージボディライターが見つかりませんでした

ジャージーを使用してRESTサービスを構築し、Collection<String> XMLとして。

@GET
@Produces(MediaType.TEXT_XML)
@Path("/directgroups")
public Response getDirectGroupsForUser(@PathParam("userId") String userId) {
    try {
        Collection<String> result = service.getDirectGroupsForUser(userId, null, true);

//      return result; //first try
//      return result.toArray(new String[0]); //second try
        return Response.ok().type(MediaType.TEXT_XML).entity(result).build(); //third try
    } catch (UserServiceException e) {
        LOGGER.error(e);
        throw new RuntimeException(e.getMessage());
    }
}

しかし、私の試みは次の例外で失敗します:

javax.ws.rs.WebApplicationException:com.Sun.jersey.api.MessageException:Java class Java.util.ArrayList、and Javaのメッセージ本文ライター=タイプクラスJava.util.ArrayList、およびMIMEメディアタイプtext/xmlが見つかりませんでした

そして、私がGoogle経由で見つけたその例外に対するすべての結果は、私の状況のようにtext/xmlではなくtext/jsonを返すことに対処しました。

誰も私を助けることができますか? Responseを使用すると、それがXMLのルート要素になり、コレクションがその中の文字列要素のリストになると考えました。

16
lrxw

注:この回答は機能しますが、 anarの回答 の方が優れています。

JAXB注釈付きクラスを使用して問題を解決する必要があります。メソッドをこれに変更できます:

@GET
@Produces(MediaType.TEXT_XML)
@Path("/directgroups")
public Groups getDirectGroupsForUser(@PathParam("userId") String userId) {
    try {

        Groups groups = new Groups();
        groups.getGroup().addAll(service.getDirectGroupsForUser(userId, null, true));
        return groups;
    } catch (UserServiceException e) {
        LOGGER.error(e);
        throw new RuntimeException(e.getMessage());
    }
}

次に、グループ用にJAXB注釈付きクラスを作成します。 this answer で説明されているプロセスを使用して、生成されたクラスを含めました。生成されるドキュメントの例を次に示します。

<groups>
  <group>Group1</group>
  </group>Group2</group>
</groups>

そして、生成されたクラスは次のとおりです。

package example;

import Java.util.ArrayList;
import Java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for anonymous complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element ref="{}group" maxOccurs="unbounded"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "group"
})
@XmlRootElement(name = "groups")
public class Groups {

    @XmlElement(required = true)
    protected List<String> group;

    /**
     * Gets the value of the group property.
     * 
     * <p>
     * This accessor method returns a reference to the live list,
     * not a snapshot. Therefore any modification you make to the
     * returned list will be present inside the JAXB object.
     * This is why there is not a <CODE>set</CODE> method for the group property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getGroup().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link String }
     * 
     * 
     */
    public List<String> getGroup() {
        if (group == null) {
            group = new ArrayList<String>();
        }
        return this.group;
    }

}
11

使用する

List<String> list = new ArrayList<String>();
GenericEntity<List<String>> entity = new GenericEntity<List<String>>(list) {};
Response response = Response.ok(entity).build();

汎用エンティティラッパーは、Response Builderの使用時に出力を取得するように機能します。

参照

45
anar

返すオブジェクトに@XmlRootElement(name = "class name")を追加して、問題を解決しました

0
user3145787

これまでのところ私のために働いた唯一のことは、独自のWrapperオブジェクトを作成することです。

JAXBの解析方法を説明する@ XmlRootElementアノテーションを忘れないでください。

これはあらゆるタイプのオブジェクトで機能することに注意してください。この例では、StringのArrayListを使用しました。

例えば.

Wrapperオブジェクトは次のようになります。

import Java.util.ArrayList;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class ArrayListWrapper {
    public ArrayList<String> myArray = new ArrayList<String>();
}

そして、RESTメソッドは次のようになります。

@GET
@Produces(MediaType.TEXT_XML)
@Path("/directgroups")
public ArrayListWrapper getDirectGroupsForUser(@PathParam("userId") String userId) {
    try {
        ArrayListWrapper w = new ArrayListWrapper();
        w.myArray = service.getDirectGroupsForUser(userId, null, true);
        return w;
    } catch (UserServiceException e) {
        LOGGER.error(e);
        throw new RuntimeException(e.getMessage());
    }
}
0
Naor Bar