我正在使用tomcat 7.0.11,它也支持servlet 3.0但
req.getServletContext().getEffectiveMajorVersion()
// 2
req.getServletContext().getEffectiveMinorVersion()
// 5
给了我这个输出。
我将如何实现servlet 3.0?
它显示 jsp 2.1,而我希望2.2 ,因为tomcat支持javaServer第2.2页。
以及我如何获得JAvaServer Page版本?
答案 0 :(得分:3)
确保web.xml
指定Servlets 3.0:
<web-app
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<!-- snip -->
</web-app>
要获取您正在使用的JSP版本,请使用javax.servlet.jsp.JspFactory
:
JspFactory.getDefaultFactory().getEngineInfo().getSpecificationVersion();