运行jsp程序是出现这个 The server does not support version 3.0 of the J2EE Web module specification

2025-03-22 21:06:11
推荐回答(2个)
回答1:

你应该是用到了servlet 3.0 的规范,或新功能,然后你运行在了不支持3.0的web容器上,就会出这个错。解决方法:
web.xml 里面的规范改为2.5的,或者发布到tomcat 7上面,tomcat6是不支持的。

回答2:

你右击工程 应该有个project faces 里面有设置