I have a working webapp running on Tomcat 5.5 that I am trying to connect to Tomcat 7. I had a problem trying to precompile some JSPs using Jasper2. I got: java.lang.NumberFormatException: for input line: "$ {startYear}"
I believe the problem is that this new version of Jasper (JSP 2.1 impl) is trying to dereference $ {startYear} during pre-compilation. In the old version, I see $ {startYear} in the generated Java file.
I am sure this is some configuration or class problem that I am missing, but I cannot find any good solution references. BTW - I can make it work by returning to the jasper jars that ship with 5.5, but I would rather not do it if I can avoid it.
thanks for any advice
source share