Re: JSTL and scope

2004-09-22 Thread Mark Lowe
As this is a struts list then perhaps you'd consider using a struts action or even perhaps a plain old servlet to do what you need. request.setAttribute("test",MyClass.TEST); if its a map then request.setAttribute("mymap",map); or even Iterator keys = map.keySet().iterator(); while(keys.hasNext()

RE: JSTL and scope

2004-09-22 Thread Allistair Crossley
I can see where you are coming from. I would also like to be able to call custom methods on objects rather than just those that have getXXX. I suppose this is all to do with JSTL adhering to strict bean specification with everything acquired by get methods matching class members. you would nee