资源简介
java web 课程设计 适合初学者使用,带数据库,连接上就可以运行
代码片段和文件信息
package com.jdbc;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class Conn {
private final static String url = “jdbc:mysql://localhost:3306/student“;
private final static String username = “root“;
private final static String password = ““;
private static Connection conn;
static{
try {
Class.forName(“com.mysql.jdbc.Driver“);
conn = DriverManager.getConnection(url username password);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
public static Connection getConnection(){
// try {
// System.out.println(conn.getmetaData().getURL());
// } catch (SQLException e) {
// e.printStackTrace();
// }
return conn;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-27 21:39 Student\
文件 929 2017-10-05 16:35 Student\.classpath
文件 907 2017-10-05 16:08 Student\.project
目录 0 2017-10-05 16:08 Student\.settings\
文件 567 2017-10-05 16:08 Student\.settings\.jsdtscope
文件 364 2017-10-05 16:08 Student\.settings\org.eclipse.jdt.core.prefs
文件 473 2017-10-05 16:08 Student\.settings\org.eclipse.wst.common.component
文件 345 2017-10-05 16:08 Student\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2017-10-05 16:08 Student\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2017-10-05 16:08 Student\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2017-10-05 16:08 Student\build\
目录 0 2017-11-02 21:20 Student\build\classes\
目录 0 2017-11-02 21:20 Student\build\classes\com\
目录 0 2017-11-02 21:20 Student\build\classes\com\jdbc\
文件 1142 2017-11-02 21:20 Student\build\classes\com\jdbc\Conn.class
目录 0 2017-11-02 21:20 Student\build\classes\com\jdbc\DAO\
文件 4478 2017-11-02 21:20 Student\build\classes\com\jdbc\DAO\StudentInfoServer.class
文件 1399 2017-11-02 21:20 Student\build\classes\com\jdbc\DAO\ValidateUser.class
文件 463 2017-11-02 21:20 Student\build\classes\com\jdbc\test.class
目录 0 2017-11-02 21:20 Student\build\classes\com\model\
文件 3088 2017-11-02 21:20 Student\build\classes\com\model\StudentInfo.class
文件 728 2017-11-02 21:20 Student\build\classes\com\model\UserTable.class
目录 0 2017-10-05 17:02 Student\src\
目录 0 2017-10-05 21:19 Student\src\com\
目录 0 2017-10-06 14:51 Student\src\com\jdbc\
文件 804 2017-10-06 14:51 Student\src\com\jdbc\Conn.java
目录 0 2017-10-07 14:41 Student\src\com\jdbc\DAO\
文件 3814 2017-10-09 17:45 Student\src\com\jdbc\DAO\StudentInfoServer.java
文件 769 2017-10-06 15:38 Student\src\com\jdbc\DAO\ValidateUser.java
文件 127 2017-10-06 14:51 Student\src\com\jdbc\test.java
目录 0 2017-10-07 13:51 Student\src\com\model\
............此处省略29个文件信息
相关资源
- 物流管理系统源码(含数据库)5624
- jsp模拟酷狗官网源码(附数据库)
- 一个完整的点餐微信小程序(附后台
- 基于 struts 的学生寝室管理系统的设计
- 煤矿安全管理系统(jsp源码+数据库脚
- 基于JSP实现的美食餐饮管理系统(源
- 都市供求信息网(源码+数据库+文档)
- 图书管理系统(源码+数据库+截图)
- 学生信息管理系统源码+mysql数据库
- javaweb网上购物系统源码(附数据库脚
- jsp+servlet+jdbc开发学生信息后台管理系
- JSP选课系统(源码+文档+数据库)
- 基于JSP的超市销售管理系统(源码+
- jsp宠物商店(源码+数据库)
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 毕业设计-医院人事管理系统(源码
- Vue + SpringBoot + MyBatis 音乐网站(源码
- jsp进销存管理系统(源码+数据库+文档
- 基于JAVA_JSP电子书系统(源码+数据库
- JSP考试网上报名考试系统(源码+数据
- javaweb实现的邮件收发系统(附数据库
- java+数据库商品交易管理系统(附数据
- java swing工资管理系统(源码+数据库
- JSP购物网站完整源码包含项目源码,
- kettle连接数据库相关jar包
- Android直连Mysql数据库需要导入的jar包
- 实现jsp页面二级下拉框联动,实时读
- c3p0-0.9.5.2的三个jar包 数据库连接池
- 连接数据库mysql所需jar包
评论
共有 条评论