HttpServletRequest hrequest=(HttpServletRequest)request; HttpServletResponse hresponse=(HttpServletResponse)response; String loginUser=(String)hrequest.getSession().getAttribute("loginUser"); if(loginUser==null) { hresponse.sendRedirect(hrequest.getContextPath()+"/index.jsp?flag=1"); return; }else...
肯定不能单独输localhost了,默认端口是8080,其实一般情况下咱们输入网页,比如www.sina.com.cn的时候,后面也应该加 :和端口号的,只是http默认端口号是定的,而tomcat可以改,所以得用8080,当然,如果你在其config.xml里将端口改了,你就得用其他端口,而8080 就不可用了 希望对你有帮助 ...
这个地址是访问本机端口号为8080的web页面,若要成功打开需要你本机的web服务(比如Apache或IIS)已经启动,服务端口号为8080,且服务器设置的根路径下有index.jsp这个文件
1. 你的tomcat是否启动,访问localhost:8080看到的是一个带猫的图片 2. 你的url如果和你题目一样的话,请把中文冒号换成英文冒号 3. 访问项目的index.jsp,是要在8080/后带项目名称(WebContent)的,然后再加/index.jsp 4. index.jsp文件不存在 ...
你的意思是输入上面的地址,直接跳转到mobindex.jsp吗。如果是的话,你可以在自己的项目目录下的WEB-INF文件夹下有一个web.xml文件,将里面的 <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <...
在JSP中,当用户在浏览器中输入:http://localhost:8080/myWebApp/start/,就会调用student这个Servlet,可以在Web.xml中()配置。 A B C D 正确答案 答案解析 略 真诚赞赏,手留余香 小额打赏 169人已赞赏
用http://localhost:8080/student/info.jps运行错误 public class Student { private String name; private String phone; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhone() { return phone; } public void setPhone(String ...
localhost是指本地主机的地址,8080是默认端口号。应该是服务器默认的主页。
localhost代表本地服务器,如果你想通过www.访问的话,需要以下几个条件 1。可供外界访问的IP地址 2.域名一个(需要花钱申请)或者你将JSP文件放在专门的JSP服务器上,之后在买一个域名。
404 是没有找到文件的错误,你可以先试一下http://localhost:8080 看一下你的tomcat装好没有,没装好的可能性是非常大的,可以尝试重启一下tomcat,或者重新配置一下~,如果使用软件开发的话,查一下软件的帮助文档,可以找到怎么操作~