Does generation of debug information to JSP classes add much to javac execution time?
I am looking looking into the options for tweaking the performance of JBoss 5.1.0 and one of the options ava开发者_如何学编程ilable to me is to disable the generation of debug information when compiling JSPs.
I know that the presence/absence of debug information for the JVM makes no real difference, but does the generation of that debug information add much to compile time?
Thanks in advance
Richard
No, it doesn't, but since a JSP is basically compiled into a large try
block, this may reduce the risk to bump into the 64KB limit.
精彩评论