-
Notifications
You must be signed in to change notification settings - Fork 762
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
check Tomcat version when webapp is deployed #1322
Comments
The method lives in
|
Possibly the JSP compiler config could be somehow verified with |
The net result of the check should be error page displayed for all OpenGrok JSPs. |
The |
OpenGrok now actually requires Servlet API 3.0 so this can be revisited. |
Instead of checking specific container flavor/version the web app should check |
This might be worthwhile to revisit given #4075 that basically prohibits using Tomcat 10.1. |
We can check Tomcat version in
WebappListener#contextInitialized()
withapplication.getServerInfo()
(http://stackoverflow.com/questions/14925073/how-to-find-out-running-tomcat-version)Granted, this will not help for issues like #1303 where Tomcat's JSP compiler is instructed to compile with older Java version but better than nothing and complements the recently added check for Java version in cset 4b511ed.
The text was updated successfully, but these errors were encountered: