xml 를 javaBean 으로 해석 할 때 Date 형식 문제 해결

2817 단어 WebService
    /**
     * xml   JavaBean
     * @param xml
     * @param c
     * @return
     */
    public static  T converyToBean(String xml, Class c) {
        T t = null;
        try {
            JAXBContext context = JAXBContext.newInstance(c);
            Unmarshaller unmarshaller = context.createUnmarshaller();
            t = (T) unmarshaller.unmarshal(new StringReader(xml));
        } catch (Exception e) {
            logger.error("xml convert to javaBean err:",e);
        }

        return t;
    }

기본적으로 해석 가능 한 시간 형식 은 2030 - 12 - 31T 00: 00 입 니 다.
시간 형식 이 2030 - 12 - 31 00: 00 시 에는 해석 할 수 없습니다.
해결 방법
해석 클래스 만 들 기
import javax.xml.bind.annotation.adapters.XmlAdapter;
import java.text.SimpleDateFormat;
import java.util.Date;

public class JaxbDateSerializer extends XmlAdapter {
    private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    @Override
    public String marshal(Date date) throws Exception {
        return dateFormat.format(date);
    }

    @Override
    public Date unmarshal(String date) throws Exception {
        return dateFormat.parse(date);
    }
}


javaBean 속성 에 주석 을 추가 하 는 get 방법
        @XmlJavaTypeAdapter(JaxbDateSerializer.class)
        public Date getCREATED() {
            return CREATED;
        }

        public void setCREATED(Date CREATED) {
            this.CREATED = CREATED;
        }

        public String getLAST_UPD_BY() {
            return LAST_UPD_BY;
        }

        public void setLAST_UPD_BY(String LAST_UPD_BY) {
            this.LAST_UPD_BY = LAST_UPD_BY;
        }
        @XmlJavaTypeAdapter(JaxbDateSerializer.class)
        public Date getLAST_UPD() {
            return LAST_UPD;
        }

        public void setLAST_UPD(Date LAST_UPD) {
            this.LAST_UPD = LAST_UPD;
        }

이 때 xml 를 다시 분석 하면 성공 적 으로 해석 할 수 있 습 니 다.
    public static void main(String[] args) {

        String xml="" +
                "" +
                "HRHBDMJD_CUST_SALES_TEMPLATE" +
                "HAIERMDM" +
                "" +
                "2030-12-31 00:00:00" +
                "admin" +
                "2008-07-07 18:15:33" +
                "2019-01-15 15:32:10" +
                "" +
                "" +
                "";
                
        MdmResp pricebean=JaxbUtil.converyToBean(xml,MdmResp.class);

        System.out.println(pricebean);
    }

좋은 웹페이지 즐겨찾기