試圖保存List<Status>
到MongoDB中(通過嗎啡),我得到這個編譯時錯誤:節省twitter4J狀態到MongoDB中給「twitter4j.Status是一個接口,而JAXB無法處理接口」
com.sun.xml.ws.spi.db.DatabindingException: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
twitter4j.Status is an interface, and JAXB can't handle interfaces.
this problem is related to the following location:
at twitter4j.Status
at public java.util.List Model.TwitterJob.getStatuses()
有什麼想法?非常感謝!
我終於實現了一個窮人的解決方案:將(幾乎)所有字段從狀態映射到一個新類,然後我可以保存到Mongo。你的解決方案絕對更優雅! – seinecle