【Spring出错原因】Caused by: java.lang.NoSuchMethodException: com.cxf.service.Chinese.()

【Spring出错原因】Caused by: java.lang.NoSuchMethodException: com.cxf.service.Chinese.()_第1张图片

一般这种情况是pojo类没有办法实例化,主要原因看看是否忘记写无参构造方法;

【Spring出错原因】Caused by: java.lang.NoSuchMethodException: com.cxf.service.Chinese.()_第2张图片

重点:记得实现类中的无参构造,必须写,如果没有构造函数,则对象创建失败。

【Spring出错原因】Caused by: java.lang.NoSuchMethodException: com.cxf.service.Chinese.()_第3张图片

你可能感兴趣的:(java)