资源简介
刚刚初学Javaweb的小白,系统是纯粹的jsp+Javabean+mysql,压缩包中包含了整个项目和sql文件,使用前麻烦记得导入
代码片段和文件信息
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;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 929 2017-10-05 16:35 Student\.classpath
文件 907 2017-10-05 16:08 Student\.project
文件 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
文件 1142 2017-11-02 21:20 Student\build\classes\com\jdbc\Conn.class
文件 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
文件 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
文件 804 2017-10-06 14:51 Student\src\com\jdbc\Conn.java
文件 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
文件 2023 2017-10-09 16:39 Student\src\com\model\StudentInfo.java
文件 399 2017-10-06 19:57 Student\src\com\model\UserTable.java
文件 62 2017-10-05 21:10 Student\WebContent\css\st
文件 1487 2017-10-09 22:32 Student\WebContent\deleteInfo.jsp
文件 730 2017-10-09 17:48 Student\WebContent\deleteOneStudent.jsp
文件 1392 2017-10-09 22:31 Student\WebContent\displayInfo.jsp
文件 484 2017-10-06 21:29 Student\WebContent\exit.jsp
文件 821 2017-10-07 11:07 Student\WebContent\index.jsp
文件 2688 2017-10-07 15:43 Student\WebContent\inputInfo.jsp
文件 862 2017-10-09 17:26 Student\WebContent\inputInfo_result.jsp
文件 352 2017-10-06 21:21 Student\WebContent\islogin.jsp
文件 15673 2017-10-07 14:29 Student\WebContent\js\Calendar3.js
............此处省略31个文件信息
- 上一篇:剑指offer(Java版)109892
- 下一篇:java学生信息管理系统+代码
相关资源
- 锐聘学院QST青软JavaWeb十二个打包
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- java web知识点总结思维导图
- java web项目案例——知识管理软
- 博客系统笔记以及源码
- 李兴华JavaWeb培训经典笔记
- javaweb程序源码
- 基于JavaWeb的美食图片分享网站.zip
- JavaWeb-学生在线选课系统
- JavaWeb经典项目-图书管理系统
- 二手房屋交易系统
- 网络购物商城项目-12个项目
- 毕设:基于javaweb的宿舍管理系统
- javaweb政府oa代码
- 基于SSM框架的网上书店商城项目系统
- 旅游平台JAVA WEB
- JavaWeb网上图书商城完整项目资料
- JavaWeb开发的BBS系统
- SSM+Mysql实现防慕课网项目.zip
- Java Web开发实战经典
- 深入分析JavaWeb技术内幕修订版_13596
- JavaWEB商城项目(包括数据库)
- 基于JavaWeb的网上书店的设计与实现毕
- 基于JavaWeb学生管理系统
- JavaWeb中文件上传最强工具类
- 基于javaweb的投票系统
评论
共有 条评论