黑马程序员技术交流社区

标题: 跪求解释! [打印本页]

作者: 赵成雨    时间: 2013-7-16 19:01
标题: 跪求解释!
本帖最后由 杨兴庭 于 2013-7-25 22:54 编辑

eclipse 中web xml中配置jsp信息无效??
作者: 冯祖焱    时间: 2013-7-18 10:13
一年多没碰过j2ee的飘过
作者: 杨兴庭    时间: 2013-7-24 21:12
你配置什么的? c标签还是,,j2EE框架配置?还是用到的组件的配置?
作者: 董凯    时间: 2013-7-24 21:26
貌似找到原因了:
the app uses the @WebServlet annotation to give URL patterns to servlets, and will only run in Tomcat 7 or other servlet 3.0 containers. It will not run in Tomcat 6.

而eclipse新建servlet时,会自动在代码中生成@WebServlet annotation!


那我们如果项配置web.xml时怎么办呢?

例如,配置一个
  1. <servlet>
  2.     <servlet-name>ServletDemo5</servlet-name>
  3.     <servlet-class>com.tiankong.servlet.ServletDemo5</servlet-class>
  4.      
  5.     <init-param>
  6.         <param-name>myParam</param-name>
  7.         <param-value>paramValue</param-value>
  8.     </init-param>
  9.      
  10.   </servlet>
复制代码
如果自己在下面这个web.xml里配的话,我运行结果是无效
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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" id="WebApp_ID" version="3.0">
  3.   <display-name>ch06</display-name>
  4.   <welcome-file-list>
  5.     <welcome-file>index.html</welcome-file>
  6.     <welcome-file>index.htm</welcome-file>
  7.     <welcome-file>index.jsp</welcome-file>
  8.     <welcome-file>default.html</welcome-file>
  9.     <welcome-file>default.htm</welcome-file>
  10.     <welcome-file>default.jsp</welcome-file>
  11.   </welcome-file-list>
  12. </web-app>
复制代码

作者: 赵成雨    时间: 2013-7-27 15:11
董凯 发表于 2013-7-24 21:26
貌似找到原因了:
the app uses the @WebServlet annotation to give URL patterns to servlets, and will  ...

对啊,该怎么办呢???




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2