zoukankan      html  css  js  c++  java
  • Spring + JAX-WS : ‘xxx’ is an interface, and JAXB can’t handle interfaces 错误解决方法

    • 错误栈
    Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions
    demo.order.dao.ParamDao is an interface, and JAXB can't handle interfaces.
    this problem is related to the following location:
    at demo.order.dao.ParamDao
    at private demo.order.dao.ParamDao demo.jaxrs.server.jaxws_asm.SetParamDao.arg0
    at demo.jaxrs.server.jaxws_asm.SetParamDao
    demo.order.dao.ParamDao does not have a no-arg default constructor.
    this problem is related to the following location:
    at demo.order.dao.ParamDao ....
    
    • 解决方法:标记该方法为非web method
    private ParamDao paramDao;
    
    @WebMethod(exclude = true)
    public void setParamDao(ParamDao paramDao) {
    this.paramDao = paramDao;
    }
    
    定位问题原因* 根据原因思考问题解决方案* 实践验证方案有效性* 提交验证结果
  • 相关阅读:
    实现系统托盘
    MDI窗体应用
    C#窗体的常用设置
    什么是UWP应用
    关于用js写缓动 动画
    关于tab栏切换的解析
    函数
    for循环
    if语句
    js
  • 原文地址:https://www.cnblogs.com/jimoliunian/p/13725328.html
Copyright © 2011-2022 走看看