JSP question useBean Request scope

I am setting java bean values ​​from a jsp page that has a useBean scope.

Does this mean that java beans will lose their value after the user navigates from this page?

0


a source to share


1 answer


Yes. If you have scope = "session" set in the useBean tag, you must pass it from jsp to jsp while the session is valid.



0


a source







All Articles