当前位置: 代码迷 >> Java Web开发 >> servlet配置
  详细解决方案

servlet配置

热度:409   发布时间:2005-06-06 16:28:00.0
servlet配置
谁告诉我servlet 怎么配置啊???
搜索更多相关主题的帖子: servlet  

----------------解决方案--------------------------------------------------------

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app> <display-name>EBook Application</display-name> <description> EBook Application </description> <servlet> <servlet-name>servlet/eat.bl.admin.LogonServet</servlet-name> <servlet-class>eat.bl.admin.LogonServet</servlet-class> </servlet> <servlet-mapping> <servlet-name>servlet/eat.bl.admin.LogonServet</servlet-name> <url-pattern>/LogonServet.do</url-pattern> </servlet-mapping> <session-config> <session-timeout>120</session-timeout> </session-config> <welcome-file-list> <welcome-file>b_login.htm</welcome-file> </welcome-file-list>

</web-app>


----------------解决方案--------------------------------------------------------
没有一点解释,让别人怎么看的懂呀
等有时间了再来解释一下吧
----------------解决方案--------------------------------------------------------
是哦
一句中文都没有哦
不知道是干吗的哦
光秃秃的代码
----------------解决方案--------------------------------------------------------
  相关解决方案