คำถามติดแท็ก simple-framework

14
ไม่สามารถสร้าง Call Adapter สำหรับตัวอย่างคลาสได้ง่าย
ฉันใช้ชุดติดตั้งเพิ่ม 2.0.0-beta1 กับ SimpleXml ฉันต้องการดึงทรัพยากรแบบง่าย (XML) จากบริการ REST Marshalling / Unmarshalling the Simple object ด้วย SimpleXML ทำงานได้ดี เมื่อใช้รหัสนี้ (แปลงรูปแบบก่อน 2.0.0 โค้ด): final Retrofit rest = new Retrofit.Builder() .addConverterFactory(SimpleXmlConverterFactory.create()) .baseUrl(endpoint) .build(); SimpleService service = rest.create(SimpleService.class); LOG.info(service.getSimple("572642")); บริการ: public interface SimpleService { @GET("/simple/{id}") Simple getSimple(@Path("id") String id); } ฉันได้รับข้อยกเว้นนี้: Exception in thread …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.