JSP中使用JDBC连接MySQL数据库的详细步骤

栏目: JSP · 发布时间: 7年前

内容简介:JSP中使用JDBC连接MySQL数据库的详细步骤

1,首先在自己新建的项目文本框中输入Web Project的名称,然后单击下一步。

JSP中使用JDBC连接 <a href='https://www.codercto.com/topics/18746.html'>MySQL</a> 数据库的详细步骤

2,继续单击下一步

3,把Generate web.xml deployment descriptor复选框勾上。

JSP中使用JDBC连接MySQL数据库的详细步骤

4,单击Finish,完成Web project工程的创建。

JSP中使用JDBC连接MySQL数据库的详细步骤

5,打开MyEclipse Datebase Explore,如图所示

JSP中使用JDBC连接MySQL数据库的详细步骤

6,按图中所示填写各项内容,并通过Add JARS添加相应的数据库驱动程序。

JSP中使用JDBC连接MySQL数据库的详细步骤

7,通过Test Driver测试驱动是否连接成功,需要输入密码。成功后如下图所示

JSP中使用JDBC连接MySQL数据库的详细步骤

8,单击Finish完成数据库的连接,右击选择Open Database Connection,输入密码后,并单击OK

JSP中使用JDBC连接MySQL数据库的详细步骤

9,接下来需要在创建的目录中添加MySQL数据库驱动,需要将相应的MySQL数据库驱动粘贴到WEB-INF/lib文件夹下。

JSP中使用JDBC连接MySQL数据库的详细步骤

10,通过右击mysql-connectior-java-5.1.6.jar,在Build Path中单击Add to Build Path

JSP中使用JDBC连接MySQL数据库的详细步骤

11,在index.jsp中输入如下代码,并配置相应mySQL数据库数据

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page import="java.sql.*" %>
<body>
<% 
String driver = "com.mysql.jdbc.Driver";
// URL指向要访问的数据库名test1
String url = "jdbc:mysql://127.0.0.1:3306/test";
// MySQL配置时的用户名
String user = "root";
// Java连接MySQL配置时的密码
String password = "111";
try {
// 1 加载驱动程序
Class.forName(driver);
// 2 连接数据库
Connection conn = DriverManager.getConnection(url, user, password);
// 3 用来执行 SQL 语句
Statement statement = conn.createStatement();
// 要执行的SQL语句
String sql = "select * from login";
ResultSet rs = statement.executeQuery(sql);
String name = null;
String mima=null;
while (rs.next()) { 
name = rs.getString("userName"); 
mima = rs.getString("passWord"); 
out.println(name+"\t"+mima); 
} 
rs.close();
conn.close();
} catch (ClassNotFoundException e) {
System.out.println("Sorry,can`t find the Driver!");
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
%>
</body>

12,这样就运行成功了,对于出现8080端口号被占用,可以采用如下的方法进行删除对应的进程。

在命令提示符下,输入netstat -aon | findstr 8080

找到对应的进程的PID,假设是7659 再输入如下的命令

taskkill /pid 7659 /F

即可删除对应的进程。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Haskell Programming from first principles

Haskell Programming from first principles

Christopher Allen、Julie Moronuki / 2015 / USD 59.00

I am writing this book because I had a hard time learning Haskell. It doesn't have to be that way. I've spent the last couple years actively teaching Haskell online and in person. Along the way, I ......一起来看看 《Haskell Programming from first principles》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具