Is there a way to turn off tag object pooling? Object pooling was a cool performance technique in earlier versions of Java, but now object creation is very fast, so it no longer serves a performance function, and it introduces extra complexity into tag object design. Is this misfeature going to be phased out?
Also, on the immutable object topic, it seems that it would be better to have all the initialization of servlets and filters done in the constructor, not by calling an init function. If everything could be set in the constructor, then all instance fields could be private final, meaning that the servlet or filter object could be immutable, and therefore known to be threadsafe, which is an issue with servlets. Any chance of these changes happening in future releases of the servlet spec? Thanks -- To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>
