I am using a JSP bean and when I do an assignment to a new object, it gets over-written on a submit to the previous object.
<jsp:useBean id="base" class="com.example.StandardBase" scope="session" />
...
//base object id = 396
base = new Base()
//base object id = 1000
and on a resubmit of the page I get
<jsp:useBean id="base" class="com.example.StandardBase" scope="session" />
//base object id = 396
Is there a way to tell JSP to do a new assignment?