jsp_数据库的连接

时间:2024-10-28 14:06:26

一、添加数据库以及表

在这里我们使用的是mysql数据库

jsp_数据库的连接

二、配置数据库的驱动程序

将mysql的驱动程序复制到Tomcat目录下的lib目录中

注:在Tomcat中如果配置了新的jar包,则配置完成后一定要重新启动服务器。

三、在jsp文件中获取数据库的连接,并将前面创建的表的数据显示出来

 <%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>连接数据库</title>
</head>
<body>
<%!
public static final String dbdriver="com.mysql.jdbc.Driver"; //数据库驱动
public static final String dburl="jdbc:mysql://localhost:3306/test"; //数据库连接地址
public static final String dbuser="root"; //用户名
public static final String dbpass="a"; //密码
%>
<%
request.setCharacterEncoding("utf-8");
Connection conn=null; //声明数据库连接对象
PreparedStatement pstmt=null; //声明数据库操作
ResultSet rs=null; //声明数据库结果集
%>
<%
//数据库操作会出现异常,所以要使用try catch处理
try{
Class.forName(dbdriver); //数据库驱动程序加载
conn=DriverManager.getConnection(dburl,dbuser,dbpass); //获取数据库的连接
String sql="select * from user";
pstmt=conn.prepareStatement(sql);
rs=pstmt.executeQuery(); //执行查询操作
%>
<center>
<table border="1" width="50%">
<tr>
<th>用户编号</th>
<th>用户姓名</th>
<th>用户年龄</th>
</tr>
<%
while(rs.next()){
int uid=rs.getInt(1);
String uname=rs.getString(2);
int uage=rs.getInt(3); %>
<tr>
<td><%=uid%></td>
<td><%=uname%></td>
<td><%=uage%></td>
</tr>
<%
}
%>
</table>
</center>
<%
}catch(Exception e){
System.out.println(e);
}finally{
rs.close();
pstmt.close();
conn.close();
}
%>
</body>
</html>

四、在浏览器中显示:

jsp_数据库的连接