摘要:
刚才在测试一个HttpSessionListenerpackage org.lxh.listenerdemo ;import javax.servlet.http.* ;public class HttpSessionListenerDemo implements HttpSessionListener { public void sessionCreated(HttpSessionEvent se){ System.out.println(this + ":** SESSION创建,SESSION ID = " +se.getSession().getId() ) ; . 阅读全文
摘要:
我刚才发布了这么一个listenerpackage org.lxh.listenerdemo ;import javax.servlet.http.* ;public class HttpSessionListenerDemo implements HttpSessionListener { public void sessionCreated(HttpSessionEvent se){ System.out.println(this + ":** SESSION创建,SESSION ID = " +se.getSession().getId() ) ; } p... 阅读全文
摘要:
JSP页面最终是编译为Servlet执行的,你可以在Tomcat的%CATALINA_HOME%/work/Catalina/localhost中找到一个文件夹,该文件夹跟你的web-project的虚拟路径一致!比如说,我在%CATALINA_HOME%/conf/server.xml中配置了我的web-project为如下那么在%CATALINA_HOME%/work/Catalina/localhost中就有一个文件夹名为“mldn”!并且,你在\mldn\org\apache\jsp目录下还会找到你所有jsp页面对应的.class文件,这就证明了JSP页面最终是编译为Servlet执行 阅读全文
摘要:
是在tomcat的web.xml中配置,而不是在你的%web-project-root%/WEB-INF/web.xml中!示例 Login.jsp User/Index.jsp Manage.jsp 阅读全文
摘要:
1、Servlet3个文件E:\web.workspace\mldndemo\WebContent\ch14\regist.htmlE:\web.workspace\mldndemo\WebContent\ch14\regist.jspE:\web.workspace\mldndemo\WebContent\WEB-INF\classes\org\lxh\ajaxdemo\CheckServlet.class虽然CheckServlet.class所在的位置不是E:\web.workspace\mldndemo\WebContent\,但是如果你在web.xml中配置为如下: checkSe. 阅读全文