| Author |
Basic useBean question
|
Billy Hause
Greenhorn
Joined: Jan 16, 2002
Posts: 25
|
|
I put this at the top of my JSP <jsp:useBean id="userInfo" scope="session" type="hause.user_management.User"/> Now I get the following error: javax.servlet.ServletException: bean userInfo not found within scope What causes this error? (This is the first time I've tried to use the useBean tag in my jsps.) Thanks, Billy Hause
|
 |
Jignesh Malavia
Author
Ranch Hand
Joined: May 18, 2001
Posts: 81
|
|
Replace the type attribute with the class attribute as <jsp:useBean id="userInfo" scope="session" class="hause.user_management.User"/> The class attribute instructs the JSP engine to create a new instance of the specified class if an existing one is not found. For a detailed explanation on the different attributes of the useBean tag, have a look at this chapter. -j
|
 |
Billy Hause
Greenhorn
Joined: Jan 16, 2002
Posts: 25
|
|
|
Thanks Much!
|
 |
 |
|
|
subject: Basic useBean question
|
|
|