-
在web.xml中 <init-param> <param-name>username <param-value>admin 在servlet中的init()中 String username = this.getParameter("username")查看全部
-
在java页面中 response.sendRedirect("login.jsp"); // 错误,当前路径下的login.jsp,不存在 response.sendRedirect(request.getContextPath+"/login.jsp"); // 项目根目录下的此文件 request.getRequestDispatcher("login.jsp").forward(request,response); // 错误,当前路径下的不存在此文件 request.getRequestDispatcher("/login.jsp").forward(request,response); // 在java文件中,/表示根目录,表示根目录下的login.jsp request.getRequestDispatcher("../login.jsp").forward(request,response); // 表示返回上一层目录后的login.jsp查看全部
-
在JSP页面上 <a href="servlet/HelloServlet"> // 相对路径,是web.xml中设置的虚拟路径 <a href="/servlet/HelloServlet"> // 错误,这里的/是表示服务器的根目录 <a href="<%=request.getContextPath()%>/servlet/HelloServlet"> // 路径为项目的根目录 在web.xml中配置url的时候需加/,/servlet/HelloServlet查看全部
-
Servlet笔记查看全部
-
Servlet与九大内置对象查看全部
-
路径3查看全部
-
路径2查看全部
-
路径配置查看全部
-
servlet装载的优先级查看全部
-
servlet生命周期查看全部
-
localhost是服务器主机名,也可以是IP地址127.0.0.1;8080是tomcat服务器的端口号;helloapp是web工程的上下文地址ContexRoot(一般情况下与web工程名一致);最后是<url-pattern/>标签中的内容。查看全部
-
正确的URL地址是:http://localhost:8080/helloapp/hello,其中localhost是服务器主机名,也可以是IP地址127.0.0.1;8080是tomcat服务器的端口号;helloapp是web工程的上下文地址ContexRoot(一般情况下与web工程名一致);最后是<url-pattern/>标签中的内容。查看全部
-
JSP的前身是servlet查看全部
-
<loadon-startup>1</loadon-startup>数字越小表示优先级别越高查看全部
-
传说中的Servlet查看全部
举报
0/150
提交
取消