2

我正在尝试在客户端解组 JAXB,但我将对象的属性设置为 NULL。

这就是我正在做的解组

    URL url = new URL("http://localhost:9191/service/firstName/tony?format=xml");   

    HttpURLConnection conn = (HttpURLConnection) url.openConnection();

    conn.setRequestMethod("GET");
    conn.setRequestProperty("Accept", "application/atom+xml");

    if (conn.getResponseCode() != 200) {
        throw new RuntimeException("Failed : HTTP error code : "
                + conn.getResponseCode());
    }

    BufferedReader br = new BufferedReader(new InputStreamReader(
        (conn.getInputStream())));


    JAXBContext jaxbContext = JAXBContext.newInstance(LDAPUsers.class);
    Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();


    LDAPUsers lu =  (LDAPUsers) jaxbUnmarshaller.unmarshal(br);
    ArrayList<LDAPUser> list = new ArrayList<LDAPUser>();


    //list.addAll(lu.getCounty());
    **System.out.println(lu.ldapUser.get(0).getFirstName());//this is giving NULL**

    conn.disconnect();

请帮忙!!!

4

2 回答 2

0

ValidationEventhandler您可以设置on 的一个实例,Unmarshaller以便在解组过程中出现任何问题时得到通知。这有助于调试问题:

    jaxbUnmarshaller.setEventHandler(new ValidationEventHandler() {

        @Override
        public boolean handleEvent(ValidationEvent event) {
            System.out.println(event.getMessage());
            return true;
        }

    });

客户端示例

于 2012-08-29T11:24:13.923 回答
0

检查您的类是否正确序列化并使用@XmlRootElement@XmlElement进行注释。

检查这个例子和这个另一个。另一个完整的例子

放置一些断言来检查not null objects 和list not empty

最后,如果您使用的是 spring 3,我不明白您为什么要管理连接和输入流...尝试使用控制器的方法,也许您需要一个自定义解组器:

@RequestMapping(method=RequestMethod.GET, value="/myurl")
public ModelAndView getUsers(@RequestBody List<LDAPUsers> users) {
于 2012-08-29T11:15:59.597 回答