gpt4 book ai didi

java - 访问提交的对象时在 Struts2 中获取 NullPointerException

转载 作者:行者123 更新时间:2023-12-01 15:02:16 27 4
gpt4 key购买 nike

我有以下代码和配置

波乔

public class MyInfo {
private String name;
private String desc;

//... getters, setters ...
}

我的行动

package demo;

//... import statements ...

public class MyAction extends ActionSupport {

public static final String FAILURE = "failure";

private MyInfo info;
private String result;
private String message;

public String execute() {
result = SUCCESS;
return result;
}

public String processInfo() {
result = FAILURE;
try {
String name = info.getName();
//... More Statements //
result = SUCCESS;
} catch(Exeption e) {
message = "Unable to process information : " + e.getMessage;
}

return result;
}

//Getter and Setter methods of info, result, and message.


}

Struts.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="base-ajax" namespace="/" extends="json-default,struts-default" abstract="true" >
<global-results>
<result type="json"></result>
<result name="failure" type="json"></result>
</global-results>
</package>

<package name="info-ajax" namespace="/" extends="base-ajax">
<action name="processInfo" method="processInfo" class="demo.MyAction">
<result type="json"></result>
</action>
</package>
<struts>

渲染的 JSP 片段

<form id="infoForm" method="post" action="processInfo.action">
<input id="infoName" type="text" name="info.name"></input>
<input id="infoDesc" type-"text" naame="info.desc"></input>
<a id="btn-submit" href="#">Submit</a>
</form>

JSP 头部的 jQuery。

var jQ = jQuery.noConflict();

jQ(document).ready(function() {
jQ("#btn-submit").click(function() {
//perform some validation
var formData = jQ("#infoForm").serialize();
jQ.ajax({
url: "processInfo.action",
data: formData,
dataType: "json",
error: function() {
alert("Some error has occurred while processing request.");
},
success: function(response) {
if(response.result = "failure") {
alert("Information processing failed.");
} else if(response.result) {
alert("Information processed successfully.");
}
}
});
});
});

在大多数情况下,它运行顺利。但有时我会在 info.getName() 上的 MyAction.processInfo() 中遇到 NullPointerException。似乎 info 未填充。我已经看到表单正在以正确的值提交(使用 Firebug 和篡改数据插件进行分析)。我不相信 params 拦截器会跳过创建 info。我的配置中可能缺少某些内容。谁能弄清楚或指导我幕后发生了什么?

最佳答案

它不可能以这种方式工作。

1) 您将 Action 的方法声明为 private

2) 您从 processInfo 内部返回 SUCCUESS 而不是 SUCCESS

我猜它们都是在将其发布到此处之前由代码清理引起的错误,但要小心:)

P.S:我不知道这是否是一个不好的做法,但我强烈建议您将 Action 的名称和类相关联(例如, processInfodemo. myAction 对可以在演示中工作,但是当你有 100 个操作时,你会发疯的)。

我的2美分...我知道这并不能回答你的问题,但是,正如你所说,它在大多数情况下都有效,所以这是一个随机问题,很难在你的机器上调试(并且使用假代码)发布:))

关于java - 访问提交的对象时在 Struts2 中获取 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13470291/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com