• 大小: 1.16MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-28
  • 语言: Java
  • 标签: jsp+Mysql  

资源简介

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.xml
     文件          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\meta-INF\
     文件          39  2018-03-15 15:46  library\WebContent\meta-INF\MANIFEST.MF
     目录           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.xml
     目录           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\style.css
     文件        1487  2018-03-15 15:50  library\WebContent\css\style0.css
     文件         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个文件信息

评论

共有 条评论