资源简介
jsp+Mysql有源码和数据库可以直接运行(数据库在resourse这个文件里)
Tocat+eclipse

代码片段和文件信息
package com.zbdx.web.dao;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
/**
* 数据库简单工具类
* @author Gao
*/
public class DBUtil {
private static String driverUri=“com.mysql.jdbc.Driver“;
private static String uri=“jdbc:mysql://localhost:3306/library“;
private static String username=“root“;
private static String password=“root“;
/**
* 加载驱动,并打开一个数据库的链接。
*/
public static Connection getConn(){
try {
Class.forName(driverUri);
return DriverManager.getConnection(uri username password);
} catch (ClassNotFoundException e) {
System.err.println(“驱动加载失败!请检查是否已添加驱动包或驱动类地址是否正确!“);
e.printStackTrace();
} catch (SQLException e) {
System.err.println(“数据库链接位置错误/用户名密码不匹配/services服务未启动!“);
e.printStackTrace();
}
return null;
}
/**
* 关闭打开的链接,释放资源
*/
public static void closeConn(Connection conn){
if(conn!=null){
try {
conn.close();
} catch (SQLException e) {
System.err.println(“链接关闭异常!“);
e.printStackTrace();
}finally {
conn = null;
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-03-20 16:15 library\
文件 841 2018-03-15 15:46 library\.classpath
文件 1040 2018-03-15 15:46 library\.project
目录 0 2018-03-20 16:15 library\.settings\
文件 567 2018-03-15 15:46 library\.settings\.jsdtscope
文件 670 2018-03-15 15:47 library\.settings\org.eclipse.jdt.core.prefs
文件 473 2018-03-15 15:46 library\.settings\org.eclipse.wst.common.component
文件 345 2018-03-15 15:46 library\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2018-03-15 15:46 library\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2018-03-15 15:46 library\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2018-03-20 16:15 library\WebContent\
目录 0 2018-03-20 16:15 library\WebContent\me
文件 39 2018-03-15 15:46 library\WebContent\me
目录 0 2018-03-20 16:15 library\WebContent\WEB-INF\
目录 0 2018-03-20 16:15 library\WebContent\WEB-INF\lib\
文件 832960 2018-03-15 16:01 library\WebContent\WEB-INF\lib\mysql-connector-java-5.1.22.jar
文件 419 2018-03-15 15:52 library\WebContent\WEB-INF\web.xm
目录 0 2018-03-20 16:15 library\WebContent\css\
文件 5556 2018-03-15 15:50 library\WebContent\css\admin.html
文件 4508 2018-03-15 15:50 library\WebContent\css\common1.css
文件 5543 2018-03-15 15:50 library\WebContent\css\control.css
文件 16419 2018-03-16 10:02 library\WebContent\css\css.css
文件 6639 2018-03-15 15:50 library\WebContent\css\head.css
文件 3028 2018-03-16 09:19 library\WebContent\css\st
文件 1487 2018-03-15 15:50 library\WebContent\css\st
文件 790 2018-03-15 15:50 library\WebContent\css\tab.js
目录 0 2018-03-20 16:15 library\WebContent\images\
文件 74 2018-03-15 15:50 library\WebContent\images\01.gif
文件 76 2018-03-15 15:50 library\WebContent\images\02.gif
文件 225 2018-03-15 15:50 library\WebContent\images\03.gif
文件 54 2018-03-15 15:50 library\WebContent\images\04.gif
............此处省略120个文件信息
相关资源
- JSP+MYSQL旅行社管理信息系统
- JSP+mysql新闻发布系统.rar
- jsp+mysql学生信息管理系统
- shine网上书城(jsp+mysql)
- 奖学金管理系统java+jsp+mysql
- JSP+MYSQL鞋城在线销售系统
- JSP+MYSQL校园一卡通系统 源代码
- JSP+MYSQL飞机订票系统-毕业设计
- JSP+MYSQL兼职招聘系统
- JSP+MYSQL电影订票系统
- jsp+mysql实现的博客系统
- jsp+mysql客户关系管理系统
- JSP+Mysql简易汽车管理系统2.0
- JSP+Mysql论坛项目
- JAVA JSP+MYSQL旅游网站
- javaEE+jsp+MySql学生成绩管理系统(ecl
- Jsp+Mysql+Jdbc+Servlet适合初学者的登陆查
- JSP+MYSQL通讯录系统
- j2ee实验-模拟传感器的Web程序-servlet
- JSP+MYSQL科研成果管理系统
- jsp+mysql在线考试系统+文档
- JSP+MYSQL物流信息网站 代码
- JSP+MYSQL SSH宠物销售管理系统-毕业设计
- JSP+MYSQL拍卖系统-毕业设计
- JSP+Mysql教师教学质量测评系统论文
- 基于 Servlet+jsp+mysql 开发 javaWeb 学生宿
- JSP+MYSQL个人日程管理系统-毕业设计
- 交友网站 JSP+Mysql
- jsp+mysql的网上购物商城
- JForum论坛系统
评论
共有 条评论