dendenners
Programmer
Hey there,
I have a war file in whose web.xml I have set the 'weblogic.jsp.precompile' option to 'true'. So when I start the server, the jsp compiler attempts to compile all jsps in the war file. However, the compiler fails because of the fact that there are variables that are used in many pages that are only declared in one jsp file which is included in the others. There are also jsps that use variables declared in other jsps and are never referenced on their own, but only as part of a larger jsp page. The compiler falls over when it meets any of these undeclared variables, while the behaviour I want is for the compiler to ignore jsps it can't compile, dynamically include any included jsp pages first and then attempt to compile each page. Is there a way of doing this? Thanks
I have a war file in whose web.xml I have set the 'weblogic.jsp.precompile' option to 'true'. So when I start the server, the jsp compiler attempts to compile all jsps in the war file. However, the compiler fails because of the fact that there are variables that are used in many pages that are only declared in one jsp file which is included in the others. There are also jsps that use variables declared in other jsps and are never referenced on their own, but only as part of a larger jsp page. The compiler falls over when it meets any of these undeclared variables, while the behaviour I want is for the compiler to ignore jsps it can't compile, dynamically include any included jsp pages first and then attempt to compile each page. Is there a way of doing this? Thanks