在Tomcat 6上部署jax-ws Web服务时的AbstractMethodError

时间:2017-05-24 09:31:16

标签: java web-services tomcat jax-ws

在Tomcat 6上对jax ws服务进行depopo时,我收到以下错误:

enter image description here

这是我的war目录:

- enter image description here

部署我的Web服务我将这些jar添加到lib目录: enter image description here

sun-jaxws.xml:

enter image description here

和web.xml: enter image description here

我的java代码是:

23:30:00-00:00:00

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

问题解决了!我删除了我添加到lib中的罐子,然后添加了在这个问题的答案中提到的罐子。

How to manually deploy a web service on Tomcat 6?

他们是:

this.keys= Object.keys(this.ResultData_search[0])` // my table heading false here
in my template :
<table>
<tr>
<th *ngFor=" let key of keys,let i=index"></th>
</tr>
<tr *ngFor=" let res of ResultData_search  ,let i = index" style="height: 35px;">
                        <td>{{i+1}}</td>
                        <td *ngFor=" let key of keys ">
                            {{res[key]}}
                        </td>


                    </tr>

</table