vote up 0 vote down star

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?

flag

64% accept rate

3 Answers

vote up 2 vote down check

I'm not completely sure, but I think base = new Base() does not update the reference stored in the session scope. Therefore, the bean you created with the initial <jsp:useBean/> is still around while the one you create manually, and then updated, isn't.

Get rid of base = new Base() and you should be fine.

If you insist upon updating it, you use HttpSession.setAttribute(). Like so:

session.setAttribute("bean", bean);

I believe the variable session is automatically created and initialized for you by the JSP engine.

link|flag
this is what i figured(after the fact). Is there a way to overwrite the reference? – Milhous Nov 18 '08 at 17:57
vote up 1 vote down

You're not supposed to new the bean yourself. Let JSP do that for you

link|flag
vote up 0 vote down

would changing scope from session to request fix this for you?

link|flag
no, as most of the time I am not "resetting" the object. – Milhous Nov 18 '08 at 17:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.