Newbie Question about running an EJB/Struts application on Jboss 4.0.2. I have a EAR file that has this struture: default.ear - default.war <-Struts application - admin.war <- Struts application -project.jar <- contains ValueBean.class and all java classes -project-ejb.jar - commons-xxx.jar files - struts-1.1.jar
The source code is able to use the ValueBean class without issue. But the following in my JSP is throwing an errors; <html:option value="">Select</html:option> <html:options collection="states" property="value" labelProperty="value"/> </html:option> Here is the error: javax.servlet.jsp.JspException: No getter method available for property value for bean under name states at org.apache.struts.taglib.html.OptionsTag.doEndTag(OptionsTag.java:252) Since I know the collection is being populated with a list of ValueBeans, I can only guess that this particular class is not being found by the JSP. So - is this a configuration issue? Can I have the project.jar in both the deploy/lib and the default.EAR file? This sounds like duplication and I know that can't be good. Thank you for any help -this is really frustrating! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3983620#3983620 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3983620 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
