Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-08 Thread SofIAm
That's great! I'll look into that. Thanks again. Jim Kiley wrote: The checkstyle, FindBugs, or PMD plugin does this for sure. On Thu, May 7, 2009 at 8:50 PM, Dave Newton newton.d...@yahoo.com wrote: SofIAm wrote: Thank YOU ALL! What a dumb JAVA 101 mistake! I was never populating

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-08 Thread SofIAm
the samelist. public String getAllEmployees() { //remove the ListString ListString myList = new ArrayListString(); } Cheers. Satya On Thu, May 7, 2009 at 8:54 AM, SofIAm sof.am...@yahoo.com wrote: Hi Everyone, I'm new to Struts. Please help me

Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread SofIAm
Hi Everyone, I'm new to Struts. Please help me figure out why the List myList is not being displayed in JSP, although my String variable s is displayed. Your help will be greatly appreciated! Thanks! Here's the code: struts.xml ?xml version=1.0 encoding=UTF-8 ? !DOCTYPE struts PUBLIC

Re: Please help! Struts 2/Eclipse - List Object is not displaying in JSP

2009-05-07 Thread SofIAm
(); in getAllEmployees() to just be myList = new ArrayListString(); and do as Lukasz suggests and you should be OK. jk On Thu, May 7, 2009 at 11:57 AM, Lukasz Lenart lukasz.len...@googlemail.com wrote: 2009/5/7 SofIAm sof.am...@yahoo.com: public String getAllEmployees() { This method