RE: dependable

2015-08-27 Thread Martin Gainty
based on your other emails it appears you are missing your Struts action class you are also probably missing struts.xml which defines the Struts Action class and results and any configuration params whats more the jsp you are using probably does not have sj="/struts-jquery-tags" declaration so i

Re: How to access a map in jsp

2015-08-27 Thread Yaragalla Muralidhar
i have added methods to get the primitive integers as strings in dto. that solved my problem. thanks Christoph. *Thanks and Regards,* Muralidhar Yaragalla. *http://yaragalla.blogspot.in/ * On Thu, Aug 27, 2015 at 2:56 PM, Christoph Nenning < christoph.nenn...@lex-c

Re: How to access a map in jsp

2015-08-27 Thread Christoph Nenning
What are the types of antibioticId and organismTypeId ? Are they primitive integers/longs? I would add methods to DTOs to get them as Strings. I suggest to store the list in a pageScope variable, to make the expression better readable. There should be no dot before the bracket. You wrote "oaMap.

How to access a map in jsp

2015-08-27 Thread Yaragalla Muralidhar
Hi, the following is the code in action class //_ private List antibiotics; private List organismTypes; private Map> oaMap; @Override public String execute() throws Exception { try{ antibiotics=dtService.getAllAntibioticsList(); organismTypes=dtServ