Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何使用 EL 检索(获取)bean 的属性。如何使用 EL设置JavaBean 的属性?
谢谢!
JSP 用于从控制器放置在请求属性中的 bean 生成标记。它不应该改变 bean 的属性。仅从 bean 中读取。所以我会首先检查你正在做的事情是否不应该在控制器而不是视图中完成。
也就是说,要设置 bean 属性,您可以使用<c:set>JSTL 的标记:
<c:set>
<c:set target="${someBean}" property="foo" value="someValue"/>