資源簡介
剛剛初學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學生信息管理系統+代碼
評論
共有 條評論