欢迎来到代码驿站!

JSP代码

当前位置:首页 > 软件编程 > JSP代码

struts2中action实现ModelDriven后无法返回json的解决方法

时间:2021-06-10 08:22:18|栏目:JSP代码|点击:

复制代码 代码如下:

public class DeviceAction extends AbstractAction implements ModelDriven<Device> {
    private static Log log = LogFactory.getLog(DeviceAction.class);
    private Device device=new Device(); //只能json化 模型驱动的bean
    private String result; //无法返回reslut的json值

   
    public String getResult(){
        return result;
    }
    public void setResult(String result){
        this.result=result
    }
    public DeviceDTO getModel() {
        return device;
    }
    public Device getDevice() {
        return device;
    }
    public void setDevice(Device device) {
        this.device = device;
    }
}            

xml配置:

复制代码 代码如下:

<action name="queryPu"
            class="com.jxj.bss.web.actions.DeviceAction"
            method="queryPu">
            <interceptor-ref name="isLogin"></interceptor-ref>
            <result type="json">
                <param name="includeProperties">
                    resultCode
                </param>
            </result>
        </action>

解决办法:

复制代码 代码如下:

<action name="queryPu"
            class="com.jxj.bss.web.actions.DeviceAction"
            method="queryPu">
            <interceptor-ref name="isLogin"></interceptor-ref>
            <result type="json">
                <param name="root">action</param>
                <param name="includeProperties">
                    resultCode
                </param>
            </result>
        </action>

上一篇:在.jsp中非表单请求action的几种方式总结

栏    目:JSP代码

下一篇:将TOMCAT装入IIS全攻略

本文标题:struts2中action实现ModelDriven后无法返回json的解决方法

本文地址:http://www.codeinn.net/misctech/138868.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有