Is there -or shouldn't there- be a tag to call a different constuctor than
the defaultconstructor of a bean. For example a bean with the constructor
:
public aBean(int i){ //get the values of that bean
with key i from a dbase}
and then in the JSP-page:
<usebean name="myBean" type="aBean"
lifespan="session">
<setoncreate="int"> // ofcourse setoncreate is not a good
example since it already exists
</usebean>
Mark