JSP 连接数据库
jsp 连接数据库
本教程假定您已经了解了 jdbc 应用程序的工作方式。在您开始学习 jsp 数据库访问之前,请访问 java mysql 连接 来设置相关驱动及配置。
注意:
你可以下载本站提供的 jar 包:
mysql 5 版本:mysql-connector-java-5.1.39-bin.jar
mysql 8 版本:mysql-connector-java-8.0.19.jar
下载后把 mysql-connector-java-<对应版本>-bin.jar 拷贝到 tomcat 下 lib 目录。
mysql 8.0 以上版本的数据库连接有所不同:
-
1、com.mysql.jdbc.driver 更换为 com.mysql.cj.jdbc.driver。
-
mysql 8.0 以上版本不需要建立 ssl 连接的,需要显示关闭。
-
最后还需要设置 cst。
加载驱动与连接数据库方式如下:
<sql:setdatasource var="snapshot" driver="com.mysql.cj.jdbc.driver" url="jdbc:mysql://localhost:3306/yapf?usessl=false&servertimezone=utc&useunicode=true&characterencoding=utf-8 user="root" password="12345"/>
从基本概念下手,让我们来创建一个简单的表,并在表中创建几条记录。
创建测试数据
接下来我们在 mysql 中创建 yapf 数据库,并创建 websites 数据表,表结构如下:
create table `websites` ( `id` int(11) not null auto_increment, `name` char(20) not null default '' comment '站点名称', `url` varchar(255) not null default '', `alexa` int(11) not null default '0' comment 'alexa 排名', `country` char(10) not null default '' comment '国家', primary key (`id`) ) engine=innodb auto_increment=10 default charset=utf8;
插入一些数据:
insert into `websites` values ('1', 'google', 'https://www.google.cm/', '1', 'usa'), ('2', '淘宝', 'https://www.taobao.com/', '13', 'cn'), ('3', '硕编程', 'http://www.yapf.com', '5892', ''), ('4', '微博', 'http://weibo.com/', '20', 'cn'), ('5', 'facebook', 'https://www.facebook.com/', '3', 'usa');
数据表显示如下:
select操作
接下来的这个例子告诉我们如何使用jstl sql标签来运行sql select语句:
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <%@ page import="java.io.*,java.util.*,java.sql.*"%> <%@ page import="javax.servlet.http.*,javax.servlet.*" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%> <html> <head> <title>select 操作</title> </head> <body> <!-- jdbc 驱动名及数据库 url 数据库的用户名与密码,需要根据自己的设置 useunicode=true&characterencoding=utf-8 防止中文乱码 --> <sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver" url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8" user="root" password="123456"/> <sql:query datasource="${snapshot}" var="result"> select * from websites; </sql:query> <h1>jsp 数据库实例 - 硕编程</h1> <table border="1" width="100%"> <tr> <th>id</th> <th>站点名</th> <th>站点地址</th> </tr> <c:foreach var="row" items="${result.rows}"> <tr> <td><c:out value="${row.id}"/></td> <td><c:out value="${row.name}"/></td> <td><c:out value="${row.url}"/></td> </tr> </c:foreach> </table> </body> </html>
访问这个jsp例子,运行结果如下:
insert操作
这个例子告诉我们如何使用jstl sql标签来运行sql insert语句:
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <%@ page import="java.io.*,java.util.*,java.sql.*"%> <%@ page import="javax.servlet.http.*,javax.servlet.*" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%> <html> <head> <title>select 操作</title> </head> <body> <!-- jdbc 驱动名及数据库 url 数据库的用户名与密码,需要根据自己的设置 useunicode=true&characterencoding=utf-8 防止中文乱码 --> <sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver" url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8" user="root" password="123456"/> <!-- 插入数据 --> <sql:update datasource="${snapshot}" var="result"> insert into websites (name,url,alexa,country) values ('硕编程移动站', 'http://m.yapf.com', 5093, 'cn'); </sql:update> <sql:query datasource="${snapshot}" var="result"> select * from websites; </sql:query> <h1>jsp 数据库实例 - 硕编程</h1> <table border="1" width="100%"> <tr> <th>id</th> <th>站点名</th> <th>站点地址</th> </tr> <c:foreach var="row" items="${result.rows}"> <tr> <td><c:out value="${row.id}"/></td> <td><c:out value="${row.name}"/></td> <td><c:out value="${row.url}"/></td> </tr> </c:foreach> </table> </body> </html>
访问这个jsp例子,运行结果如下:
delete操作
这个例子告诉我们如何使用jstl sql标签来运行sql delete语句:
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <%@ page import="java.io.*,java.util.*,java.sql.*"%> <%@ page import="javax.servlet.http.*,javax.servlet.*" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%> <html> <head> <title>select 操作</title> </head> <body> <!-- jdbc 驱动名及数据库 url 数据库的用户名与密码,需要根据自己的设置 useunicode=true&characterencoding=utf-8 防止中文乱码 --> <sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver" url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8" user="root" password="123456"/> <!-- 删除 id 为 11 的数据 --> <sql:update datasource="${snapshot}" var="count"> delete from websites where id = ? <sql:param value="${11}" /> </sql:update> <sql:query datasource="${snapshot}" var="result"> select * from websites; </sql:query> <h1>jsp 数据库实例 - 硕编程</h1> <table border="1" width="100%"> <tr> <th>id</th> <th>站点名</th> <th>站点地址</th> </tr> <c:foreach var="row" items="${result.rows}"> <tr> <td><c:out value="${row.id}"/></td> <td><c:out value="${row.name}"/></td> <td><c:out value="${row.url}"/></td> </tr> </c:foreach> </table> </body> </html>
访问这个jsp例子,运行结果如下:
update操作
这个例子告诉我们如何使用jstl sql标签来运行sql update语句:
<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> <%@ page import="java.io.*,java.util.*,java.sql.*"%> <%@ page import="javax.servlet.http.*,javax.servlet.*" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%> <html> <head> <title>select 操作</title> </head> <body> <!-- jdbc 驱动名及数据库 url 数据库的用户名与密码,需要根据自己的设置 useunicode=true&characterencoding=utf-8 防止中文乱码 --> <sql:setdatasource var="snapshot" driver="com.mysql.jdbc.driver" url="jdbc:mysql://localhost:3306/yapf?useunicode=true&characterencoding=utf-8" user="root" password="123456"/> <!-- 修改 id 为 3 的名字:硕编程改为 yapf --> <c:set var="siteid" value="3"/> <sql:update datasource="${snapshot}" var="count"> update websites set name = 'yapf' where id = ? <sql:param value="${siteid}" /> </sql:update> <sql:query datasource="${snapshot}" var="result"> select * from websites; </sql:query> <h1>jsp 数据库实例 - 硕编程</h1> <table border="1" width="100%"> <tr> <th>id</th> <th>站点名</th> <th>站点地址</th> </tr> <c:foreach var="row" items="${result.rows}"> <tr> <td><c:out value="${row.id}"/></td> <td><c:out value="${row.name}"/></td> <td><c:out value="${row.url}"/></td> </tr> </c:foreach> </table> </body> </html>
访问这个jsp例子,运行结果如下: