1

CouchDB/Ektorp を学習するために作成した小さな JSF プロジェクトの DocumentReferences でエラーが発生しました。CRUD ではすべてが正常に機能していると思います。チュートリアル プロジェクトと同様に、親ドキュメントの ID は文字列として保存されます。しかし、データベースから親オブジェクトを取得すると、次のエラーが発生します。

org.codehaus.jackson.map.JsonMappingException: Can not instantiate value of type 
[simple type, class com.pro.documents.Apple] from JSON String; no single-String 
constructor/factory method (through reference chain: com.pro.documents.Eiere["apple"]) 

残りのコードは次のとおりです。

{
   "_id": "_design/Eiere",
   "_rev": "17-ebb06b0d3102622a3d9849b9399cd94f",
   "language": "javascript",
   "views": {
       "all": {
           "map": "function(doc){if (doc.type == 'eiere') {emit(doc._id, doc);}}"
       },
       "ektorp_docrefs_apple": {
           "map": "function(doc){ if(doc.eiere){emit([doc.eiere, 'apple', doc.kategori], null);}}"
       }
   } 
}

{
   "_id": "_design/Apple",
   "_rev": "8-e04d8b5633776545b9eacdc998db4aea",
   "language": "javascript",
   "views": {
       "all": {
           "map": "function(doc){ if(doc.type == 'apple'){emit(doc._id, doc);}}"
       }
   } 
}


public class Eiere extends CouchDbDocument {

    @TypeDiscriminator
    private String type;
    private String navn;
    private String telefon;
    @DocumentReferences(backReference = "eiere", fetch = FetchType.LAZY, descendingSortOrder = true)
    private Set<Apple> apple;
    private Date dateCreated;

    public Set<Apple> getApple() {
        return apple;
    }

    public void setApple(Set<Apple> apples) {
        this.apple = apples;
    }

    public void addApple(Apple c) {
        Assert.notNull(c, "Apple may not be null");
        if (getApple() == null) {
            apple = new TreeSet<Apple>();
        }
        c.setEiere(this.getId());
        apple.add(c);
    }

    public String getType() {
        if (type == null) {
            type = "eiere";
        }
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getNavn() {
        return navn;
    }

    public void setNavn(String navn) {
        this.navn = navn;
    }

    public String getTelefon() {
        return telefon;
    }

    public void setTelefon(String telefon) {
        this.telefon = telefon;
    }

    public Date getDateCreated() {
        return dateCreated;
    }

    public void setDateCreated(Date dateCreated) {
        this.dateCreated = dateCreated;
    }
}

public class Apple extends CouchDbDocument implements Comparable<Apple>{

    private static final long serialVersionUID = 1L;
    @TypeDiscriminator
    private String type;
    private List<String> prices;
    private String kategori;
    private String eiere;
    private Date dateCreated;

    public String getType() {
        if(type == null){
            type = "apple";
        }
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public List<String> getPrices() {
        if(prices == null){
            prices = new ArrayList<String>();
            prices.add(0, " ");
            prices.add(1, " ");
            prices.add(2, " ");
        }
        return prices;
    }

    public void setPrices(List<String> prices) {
        this.prices = prices;
    }

    public String getKategori() {
        return kategori;
    }

    public void setKategori(String kategori) {
        this.kategori = kategori;
    }

    public String getEiere() {
        return eiere;
    }

    public void setEiere(String eiere) {
        this.eiere = eiere;
    }

    @Override
    public String toString() {
        return prices.toString();
    }

    public Date getDateCreated() {
        return dateCreated;
    }

    public void setDateCreated(Date dateCreated) {
        this.dateCreated = dateCreated;
    }

    @Override
    public int compareTo(Apple other) {
        if (other == this) return 0;
        if (dateCreated != null) {
            return - dateCreated.compareTo(other.dateCreated);  
        }
        return 0;
    }
}

私が間違っていることを理解するのに役立つ助けやアドバイスは大歓迎です。

編集:私の問題をより明確にする、またはその原因を特定するのに役立つ追加できる情報がある場合は、お知らせください。

Br.

4

0 に答える 0