Compiling .xsl files into .class files

Posted by Alex Ciminian on Stack Overflow See other posts from Stack Overflow or by Alex Ciminian
Published on 2010-06-16T11:01:50Z Indexed on 2010/06/16 11:12 UTC
Read the original article Hit count: 239

Filed under:
|
|
|

I'm currently working on a Java web project (Spring) which involves heavy use of xsl transformations. The stylesheets seldom change, so they are currently cached. I was thinking of improving performance by compiling the xsl-s into class files so they wouldn't have to be interpreted on each request.

I'm new to Java, so I don't really know the ecosystem that well. What's the best way of doing this (libraries, methods etc.)?

Thanks,
Alex

© Stack Overflow or respective owner

Related posts about java

Related posts about Performance