有没有办法在JSP中更新对象属性?

时间:2018-09-20 09:24:28

标签: jsp jstl jstl-functions

我是JSP的新手,我正在尝试更新JSP中的现有对象,例如obj。

让我们说Class Foo of obj看起来像

Class Foo{
    private Map<String,Bar> maps;
    private String myString;
    //Followed by getters and setters 
}

Class Bar{
String displayString;
//Followed by getters and setters
}

我尝试过 <jsp:setProperty name="${obj.maps[obj.myString]}" property="displayString" value="Some_211" /> 这给了我NullPointerException

有人可以暗示我在这里做错了吗?

0 个答案:

没有答案