gpt4 book ai didi

java - Struts2 无参数构造函数中的字符串值更改为空字符串

转载 作者:太空宇宙 更新时间:2023-11-04 11:25:06 28 4
gpt4 key购买 nike

我有以下 java 对象。

public class TestClass {
private String testString;
private int testInt;

public TestClass(){
this.testInt = 1;
this.testString = "test";
}
... getters and setters

我在我的 jsp 页面中包含了以下 Struts2 textfields

        <s:textfield name="test.testString" />
<s:textfield name="test.testInt" />

我没有在代码中初始化 test 对象,而是依赖使用 no-arg 构造函数的 Struts2。在 no-arg 构造函数将 String“test”放入字段中之后,Struts2 用空的 String 覆盖 testString 字段,但在 testInt 字段中显示 1。为什么会出现这种情况?

最佳答案

我认为发生的情况是,当提交表单时,Struts2 将空的 test.testString 字段转换为空字符串并将其放入 Java 字段中。显然 Struts2 不会将空 int 字段转换为 0。

关于java - Struts2 无参数构造函数中的字符串值更改为空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44463654/

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