How can I import bean that is made up of multiple classes (inner classes) wthin a JSP page?
Created May 4, 2012
Govind Seshadri
Answer by John Zukowski
Make sure that the entire package containing all the bean classes are available within CLASSPATH. Typically, you'd want to set this up within the startup script responsible for launching the web server. You can then use the bean via the useBean tag. You also need to import the bean package as usual within the JSP page.
Answer by John Zukowski
Make sure that the entire package containing all the bean classes are available within CLASSPATH. Typically, you'd want to set this up within the startup script responsible for launching the web server. You can then use the bean via the useBean tag. You also need to import the bean package as usual within the JSP page.