0

嗨,我正在尝试使用 struts 为我的 jsp 代码获取一个 bean,我在我的 jsp 页面中使用的 bean 是:但是每当我运行 jsp 时,我都会收到

没有属性的getter方法:bean的“testData.team.type”:“unitForm”。

我正在尝试将棒球写入我的 JSP 页面。

我的操作表单的代码是:

import com.TestGettingData;
import org.apache.struts.action.ActionForm;
public class UnitForm extends ActionForm {

private TestGettingData testData = new TestGettingData();  

public TestGettingData getTestData() {
    return testData;
}

public void setTestData(TestGettingData testData) {
    this.testData = testData;
} 

}

测试数据类有:

public class TestGettingData extends Sport{

    private String team = "Yankees"; 

private String position = "short stop";  

public void setTeam(String tm) {    
    team = tm; } 

public String getTeam() {     
        return team; } 

public void setPosition(String po) {    
    position = po; } 

public String getPosition() {   
    return position; 
    } 
}

最后在我的体育课上:

public class Sport{

    public String type = "baseball";

public String getType() {
    return type;
}

public void setType(String type) {
    this.type = type;
}


}
4

1 回答 1

0

而不是testData.team.type,尝试testData.typetypetestDatanot in 中的属性team

更新

${unitForm.testData.type}应该在您的 JSP 中显示“棒球”。

于 2012-09-30T21:51:24.853 回答