aspose file tools
The moose likes JSP and the fly likes jsp:getProperty - Name was not previously introduced as per JSP.5.3 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "jsp:getProperty - Name was not previously introduced as per JSP.5.3" Watch "jsp:getProperty - Name was not previously introduced as per JSP.5.3" New topic
Author

jsp:getProperty - Name was not previously introduced as per JSP.5.3

James Bejee
Greenhorn

Joined: Nov 05, 2012
Posts: 1
I am running in to a problem when trying to set up a bean jsp page. I get the error /WEB-INF/EnterItem.jsp(15,66) jsp:getProperty for bean with name 'itemID'. Name was not previously introduced as per JSP.5.3.







What could be the cause of this?
Stefan Evans
Bartender

Joined: Jul 06, 2005
Posts: 1005
"Name was not previously introduced" indicates that you haven't told your JSP about this bean as of yet.

The "name" of the bean used in the jsp:getProperty tag should match the "id" of the bean in the jsp:useBean tag.
i.e.:



Your useBean references an id of "itemBean"
Your getProperty references a name of: "itemID"
Your BeanMaker class stores a request attribute of "item"

These three values should presumably be the same.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: jsp:getProperty - Name was not previously introduced as per JSP.5.3
 
Similar Threads
Display Java Method Result in JSP
getting null values, while fetching data
Problem with Web Service Response
Unable to update database
Storing of Data