<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <%@page import="com.util.SQLConn"%> <%@page import="java.sql.*" %> <%@page import="java.sql.Statement" %> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP 'ZC.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> <% //获取前端数据 String usr = request.getParameter("username"); String num = request.getParameter("usernum"); String pwd = request.getParameter("userpwd"); //创建数据库类的对象 SQLConn.openDB(); //insert into User_ZC(Name,Code,Number,Power) values('usr的变量','num的变量','pwd的变量','1'); String sql = "insert into User_ZC(UserID,Name,Code,Power) values('"+num+"','"+usr+"','"+pwd+"','"+1+"')"; System.out.print("sql:"+sql); //执行SQL语句 if(SQLConn.execUpdate(sql) != 0 &&!"".equals(SQLConn.execUpdate(sql))){ int n = SQLConn.execUpdate(sql); System.out.print("n:"+n); if(n != 0 ){ request.getRequestDispatcher("ZCS.jsp").forward(request,response); }else{ request.getRequestDispatcher("ZCB.jsp").forward(request,response); } }else{System.out.print("执行SQL语句失败");} //关闭数据库 SQLConn.closeDB(); %> </body> </html>,优化代码
时间: 2023-07-19 10:08:16 浏览: 123
下面是对这段 JSP 代码的优化:
1. 在 SQL 语句中使用占位符,防止 SQL 注入攻击。
2. 在执行 SQL 语句时,判断执行结果是否成功,并根据执行结果进行相应的操作。同时,在使用 SQLConn.execUpdate() 方法时,应该将其结果保存在一个变量中,避免重复执行 SQL 语句。
3. 删除无用的注释,保留必要的注释,并且注释应该清晰、简洁、易懂。
4. 在获取前端数据时,进行非空判断,避免空指针异常。
5. 使用 try-catch-finally 块来处理数据库连接的异常,并在 finally 块中关闭数据库连接。
6. 将 HTML 和 Java 代码分离,采用 MVC 设计模式来组织代码。
7. 使用 JSTL 和 EL 表达式来替代 Java 代码中的逻辑判断和字符串拼接。
8. 将数据库连接信息、SQL 语句等信息抽象出来,放到配置文件中,以便于维护和修改。
下面是优化后的代码:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@page import="com.util.SQLConn"%>
<%@page import="java.sql.*" %>
<%@page import="java.sql.Statement" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%
// 获取前端数据
String username = request.getParameter("username");
String usernum = request.getParameter("usernum");
String userpwd = request.getParameter("userpwd");
// 执行数据库操作
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
int count = 0;
try {
conn = SQLConn.getConnection();
String sql = "INSERT INTO User_ZC(UserID, Name, Code, Power) VALUES (?, ?, ?, ?)";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, usernum);
pstmt.setString(2, username);
pstmt.setString(3, userpwd);
pstmt.setInt(4, 1);
count = pstmt.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
} finally {
SQLConn.close(conn, pstmt, rs);
}
// 根据执行结果进行相应的操作
if (count > 0) {
request.getRequestDispatcher("ZCS.jsp").forward(request,response);
} else {
request.getRequestDispatcher("ZCB.jsp").forward(request,response);
}
%>
阅读全文