DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=29053>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=29053 StackOverflowError occurs when recursive call of template is performed many times. ------- Additional Comments From [EMAIL PROTECTED] 2004-05-31 20:43 ------- I'm not sure what you think the behaviour should be. The setRecursionLimit sets an upper bound on the number of calls that can be active on the stack, but it doesn't cause the JVM to allocate more resources for the call stack; you have to use JVM-specific mechanisms to do that. Even if you setRecursionLimit very high, its possible that you will exhaust the JVM's resources, which is what appears to be happening for your example. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
