那些404的朋友,首先先注意一下你的index.jsp后面是不是隐藏了拓展名.txt所以才会导致找不到myhome/index.jsp,然后在web.xml中再加入
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
希望能帮到各位,我就是被这个拓展名坑死了!!!
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
希望能帮到各位,我就是被这个拓展名坑死了!!!
2018-01-06
<%
int n=0;
if(application.getAttribute("num")==null)
n=1;
else
{String str=application.getAttribute("num").toString();
n=Integer.parseInt(str);
if(session.isNew())
n++;
}
application.setAttribute("num", n);
out.println("您是第"+application.getAttribute("num")+"访问者");
%>
<br>
int n=0;
if(application.getAttribute("num")==null)
n=1;
else
{String str=application.getAttribute("num").toString();
n=Integer.parseInt(str);
if(session.isNew())
n++;
}
application.setAttribute("num", n);
out.println("您是第"+application.getAttribute("num")+"访问者");
%>
<br>
2018-01-03
已采纳回答 / 圠匸
可能是mysql的jar包没有导入。jar包导入:1、把mysql-connector-java-5.0.5-bin.jar(或其他版本)复制到项目的\WEB-INF\lib\下;2、项目右键-Properties - Java Build Path - Libraries-Add JARS...选择jar包导入,点击OK;
2018-01-03
最新回答 / qq_絵空事_1
应该和改#号没关系,我也出现了同样的问题,你是不是在接收显示浏览记录的时候复制了前面的代码,用了前面的Item对象来调用了get方法。只要换成遍历用的参数对象来调用方法就正常了。ID:<%=item.getId() %>变为ID:<%=i.getId() %> 其他也是要换过来
2017-12-27