Re: Addressing variables with jstl

2005-10-13 Thread Kris Schneider
Although I originally wrote it as part of the Struts Wiki, this page is helpful for determining the actual properties exposed by your bean/class: http://wiki.apache.org/struts/ExposedBeanProperties JSTL should be able to deal with pretty much anything that's exposed as a standard JavaBeans pro

Addressing variables with jstl

2005-10-13 Thread Michael Winkler
Hi, I've . g. two classes: public class A { private int i; ... } and public class B { private A a; ... } further in my JSP: Now my question: is it possible to address the variable i in Class A with the jstl? prints the memory address ... won't work