I'm creating a custom taglib with .tag files. Everything works great, except when I load 2 pages at the same time. It seems the .tag files are re-compiled on every request and the concurrency causes the compilation to fail.
Is this normal behavior for .tag files? I would have expected them to be compiled only once. Is there some way to prevent re-compilation?
The .tag files are in a jar file, which is included as in the lib directory of my war file. I'm deploying to JBoss 4.2.1, if that matters.
Thanks.