• 大小: 534KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-05-23
  • 语言: Java
  • 标签: javaweb  

资源简介

刚刚初学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.xml

     文件         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\style.css

     文件       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个文件信息

评论

共有 条评论