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.
我正在检索并将值(数据)设置到会话中。
session.setAttribute("data", result.getBody().getData());
如何将会话的值设置为表单值?路径数据接受字符串值。
<td><form:input type="hidden" path="data" value="?"/></td>
这可能吗?我应该使用 JSTL 函数来成功吗?
尝试如下操作(使用 EL):
<form:input type="hidden" value="${sessionScope.data}"/>