A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

赵成雨

中级黑马

  • 黑马币:3

  • 帖子:42

  • 精华:0

© 赵成雨 中级黑马   /  2013-7-16 19:01  /  1105 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 杨兴庭 于 2013-7-25 22:54 编辑

eclipse 中web xml中配置jsp信息无效??

评分

参与人数 1黑马币 +3 收起 理由
杨兴庭 + 3

查看全部评分

4 个回复

倒序浏览
一年多没碰过j2ee的飘过
回复 使用道具 举报
你配置什么的? c标签还是,,j2EE框架配置?还是用到的组件的配置?
回复 使用道具 举报
貌似找到原因了:
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>
复制代码

评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

回复 使用道具 举报 1 0
董凯 发表于 2013-7-24 21:26
貌似找到原因了:
the app uses the @WebServlet annotation to give URL patterns to servlets, and will  ...

对啊,该怎么办呢???
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马