当在浏览器提交表单, 提交成功后浏览器将跳转到一个新的html页面
提交成功后如果刷新页面
跳转方式如果是转发, 数据库将多存入数据一次原来数据
public class SaveServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// 解决中文乱码
request.setCharacterEncoding("UTF-8");
// 获取表单提交的数据
String usercode = request.getParameter("usercode");
String username = request.getParameter("username");
// JDBC
Connection conn = null;
PreparedStatement ps = null;
int count = 0;
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=true"
, "root", "xxxxxx");
conn.setAutoCommit(false);
String sql = "insert into t_user(usercode, username) values (?,?)";
ps = conn.prepareStatement(sql);
ps.setString(1, usercode);
ps.setString(2, username);
count = ps.executeUpdate();
conn.commit();
} catch (Exception e) {
if (conn != null) {
try {
conn.rollback();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
e.printStackTrace();
} finally {
if (ps != null) {
try {
ps.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
if (conn != null) {
try {
conn.close();
} catch (SQLException throwables) {
throwables.printStackTrace();
}
}
System.out.println(count);
if (count == 1) {
// 保存成功
// 跳转到成功页面
// 转发
request.getRequestDispatcher("/success.html").forward(request, response);
}
}
}
}
如果采用重定向的方式将不会出现上面的问题
将if语句更改为如下
if (count == 1) {
// 重定向
response.sendRedirect(request.getContextPath() + "/success.html");
}
这是因为, 重定向之后, 浏览器两次请求, 最后一次请求时浏览器的地址为/success.html
此时刷新, 刷新的是/success页面, 而不是提交表单时候的页面