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?
Yes. If you have scope = "session" set in the useBean tag, you must pass it from jsp to jsp while the session is valid.