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.
例如
<jsp:useBean id="total" class="java.util.LinkedHashMap"/> // need somehow do something like this: total.put('key', 'value');
但是不使用 scriptlet(这很明显但有点难看)
您可以为此使用JSTL 。 <c:set>
<c:set>
<jsp:useBean id="total" class="java.util.LinkedHashMap"/> <c:set target="${total}" property="key" value="value" />