在我的struts2应用程序中调用webservice

时间:2012-06-14 05:29:54

标签: struts2

有人能告诉我如何在struts2应用程序中调用webservice。  我在struts2中创建了登录页面,所以我需要访问web服务来验证,如果成功再次需要调用web服务来获取数据并在项目的jsp页面中显示

1 个答案:

答案 0 :(得分:0)

打开struts.xml文件并指定以下操作:

<action class="CLASSNAME"
        name="ACTION_NAME" method="METHOD_NAME">
        <interceptor-ref name="authStack" />
        <interceptor-ref name="json">
            <param name="enableSMD">true</param>
        </interceptor-ref>
        <result name="success" type="json" redirect="index.jsp"></result>
    </action>

使用javascript / jquery帖子将凭据发送到上述操作。以与Struts中通常编写的相同方式编写动作类