myeclipse中在jsp页面修改数据库信息 不报错但是点击保存后一直在页面下角显示等待localhost是怎么回事
请高手指教Dao中的方法publicvoidmodi(Studentstu){sql="updatestudentsetssex=?,sbirthday=?,classn...
请高手指教
Dao中的方法
public void modi(Student stu)
{
sql ="update student set ssex=?,sbirthday=?,classno=?,sscore=?,sname=? where sno =?";
conn = SQLUtil.getConn();
try
{
pstat = conn.prepareStatement(sql);
pstat.setString(1, stu.getSsex());
pstat.setString(2, stu.getSbirthday());
pstat.setString(3, stu.getSscore());
pstat.setString(4, stu.getClassno());
pstat.setString(5, stu.getSname());
pstat.setInt(6, stu.getSno());
System.out.println(sql);
pstat.executeUpdate();
pstat.close();
conn.close();
}
catch (SQLException e)
{
e.printStackTrace();
}
}
servlet如下
public class ModiServlet extends HttpServlet {
/**
*此Servlet用来修改用户信息
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=gbk");
request.setCharacterEncoding("gbk");
String id = request.getParameter("id");
int sno=0;
if(id!=null)
{
sno = Integer.parseInt(id);
}
String ssex = request.getParameter("ssex");
String sbirthday = request.getParameter("sbirthday");
String classno = request.getParameter("classno");
String sscore = request.getParameter("sscore");
String sname = request.getParameter("sname");
Student stu = new Student();
stu.setSno(sno);
stu.setSsex(ssex);
stu.setSbirthday(sbirthday);
stu.setClassno(classno);
stu.setSscore(sscore);
stu.setSname(sname);
Dao dao = new Dao();
dao.modi(stu);
request.getRequestDispatcher("/info1.jsp").forward(request, response);
}
}
是不是代码有啥问题啊? 展开
Dao中的方法
public void modi(Student stu)
{
sql ="update student set ssex=?,sbirthday=?,classno=?,sscore=?,sname=? where sno =?";
conn = SQLUtil.getConn();
try
{
pstat = conn.prepareStatement(sql);
pstat.setString(1, stu.getSsex());
pstat.setString(2, stu.getSbirthday());
pstat.setString(3, stu.getSscore());
pstat.setString(4, stu.getClassno());
pstat.setString(5, stu.getSname());
pstat.setInt(6, stu.getSno());
System.out.println(sql);
pstat.executeUpdate();
pstat.close();
conn.close();
}
catch (SQLException e)
{
e.printStackTrace();
}
}
servlet如下
public class ModiServlet extends HttpServlet {
/**
*此Servlet用来修改用户信息
*/
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=gbk");
request.setCharacterEncoding("gbk");
String id = request.getParameter("id");
int sno=0;
if(id!=null)
{
sno = Integer.parseInt(id);
}
String ssex = request.getParameter("ssex");
String sbirthday = request.getParameter("sbirthday");
String classno = request.getParameter("classno");
String sscore = request.getParameter("sscore");
String sname = request.getParameter("sname");
Student stu = new Student();
stu.setSno(sno);
stu.setSsex(ssex);
stu.setSbirthday(sbirthday);
stu.setClassno(classno);
stu.setSscore(sscore);
stu.setSname(sname);
Dao dao = new Dao();
dao.modi(stu);
request.getRequestDispatcher("/info1.jsp").forward(request, response);
}
}
是不是代码有啥问题啊? 展开
3个回答
展开全部
首先不是代码的问题,其次说一下什么是localhost:
localhost,一个特殊的DNS主机名,代表分配给引用这个名称的计算机的IP地址。 把这个名称看作是提供快速但是不可靠服务的无连接协议。localhost 指你所在的计算机本身。在windows系统它成了 127.0.0.1的别名 ,在*nix系统下,查看网卡配置会发现作为本地回环的方式,一定程序上使用localhost比127.0.0.1要快一些。重要重申localhost和IIS,IE,windows无关,他就是指你使用的计算机本身。在Hosts文件中 localhost指向的IP是127.0.0.1 这个关系是可以修改的。我知道myeclipse运行时好像有一些地方和localhost相关,你可以看看相关的地方,看有没有哪里有问题,如果这些不行,就调试一下,看报什么错
localhost,一个特殊的DNS主机名,代表分配给引用这个名称的计算机的IP地址。 把这个名称看作是提供快速但是不可靠服务的无连接协议。localhost 指你所在的计算机本身。在windows系统它成了 127.0.0.1的别名 ,在*nix系统下,查看网卡配置会发现作为本地回环的方式,一定程序上使用localhost比127.0.0.1要快一些。重要重申localhost和IIS,IE,windows无关,他就是指你使用的计算机本身。在Hosts文件中 localhost指向的IP是127.0.0.1 这个关系是可以修改的。我知道myeclipse运行时好像有一些地方和localhost相关,你可以看看相关的地方,看有没有哪里有问题,如果这些不行,就调试一下,看报什么错
展开全部
1,你执行完以后看看数据库记录有没有被修改;
2,确认有没有进入方法中。
3,加断点调试一下。
2,确认有没有进入方法中。
3,加断点调试一下。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
覆盖doGet方法,里边调用 this.doPost(request, response);看一下表单提交地址正不正确,是不是以post方法提交的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询