資源簡介
花卉管理系統,包含dao和jsp頁面實現servlet等 詳情請看代碼

代碼片段和文件信息
package?dao;
import?java.sql.Connection;
import?java.sql.DriverManager;
import?java.sql.ResultSet;
import?java.sql.SQLException;
import?java.sql.Statement;
import?java.sql.PreparedStatement;
/**
?*?數據庫連接和操作的工具類
?*?@author?Administrator
?*
?*/
public?class?baseDao?{
private?static?String?driver=“com.mysql.jdbc.Driver“;
private?static?String?url=“jdbc:mysql://localhost:3306/FlowerDB“;
private?static?String?user?=?“root“;
private?static?String?pswd?=?“root“;
public?Connection?conn?=?null;
//連接數據庫
public?Connection?getConnection(){
try?{
Class.forName(driver); //加載驅動
if(conn==?null?||?conn.isClosed()){
conn?=?DriverManager.getConnection(url?user?pswd);
}
}?catch?(ClassNotFoundException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
return?conn;
}
//關閉數據庫連接注意關閉的順序
public?void?closeAll(Connection?conStatement?stmtResultSet?rs)?{
if(rs!=null){
try?{
rs.close();
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
}
if(stmt!=null){
try?{
stmt.close();
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
}
if(con!=null){
try?{
con.close();
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
}
}
//通用的增刪改操作
public?int??executeUpdate(String?sqlstrobject...?args)?{
int?num?=?0;
PreparedStatement?ps?=?null;
conn?=?getConnection();
if(conn!=null){
try?{
ps?=?conn.prepareStatement(sqlstr);
for(int?i?=0;i ps.setobject(i+1?args[i]);
}
num?=?ps.executeUpdate();??//執行
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}finally{
closeAll(conn?ps?null);
}
}
return?num;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????529??2018-08-17?08:32??FlowerMgr\.classpath
?????文件????????300??2018-08-20?18:21??FlowerMgr\.myme
?????文件???????1752??2018-08-17?10:38??FlowerMgr\.project
?????文件????????500??2018-08-17?08:32??FlowerMgr\.settings\.jsdtscope
?????文件????????364??2018-08-17?08:32??FlowerMgr\.settings\org.eclipse.jdt.core.prefs
?????文件????????465??2018-08-17?08:32??FlowerMgr\.settings\org.eclipse.wst.common.component
?????文件????????252??2018-08-17?08:32??FlowerMgr\.settings\org.eclipse.wst.common.project.facet.core.xm
?????文件?????????49??2018-08-17?08:32??FlowerMgr\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件??????????6??2018-08-17?08:32??FlowerMgr\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????文件???????2082??2018-08-17?08:48??FlowerMgr\src\dao\ba
?????文件???????2388??2018-08-24?08:31??FlowerMgr\src\dao\FLowerDao.java
?????文件???????1316??2018-08-17?08:48??FlowerMgr\src\entity\Flower.java
?????文件????????579??2018-08-24?08:31??FlowerMgr\src\service\FlowerService.java
?????文件???????2826??2018-08-24?08:31??FlowerMgr\src\servlet\FlowerServlet.java
?????文件???????1340??2018-08-24?08:26??FlowerMgr\src\util\PageObj.java
?????文件???????2356??2018-08-17?10:57??FlowerMgr\WebRoot\add.jsp
?????文件???????3295??2018-08-24?09:16??FlowerMgr\WebRoot\index.jsp
?????文件?????304438??2018-08-14?14:14??FlowerMgr\WebRoot\js\jquery-1.12.4.js
?????文件?????????36??2018-08-17?08:32??FlowerMgr\WebRoot\me
?????文件???????2535??2018-08-20?18:23??FlowerMgr\WebRoot\WEB-INF\classes\dao\ba
?????文件???????3561??2018-08-24?08:31??FlowerMgr\WebRoot\WEB-INF\classes\dao\FLowerDao.class
?????文件???????1835??2018-08-20?18:23??FlowerMgr\WebRoot\WEB-INF\classes\entity\Flower.class
?????文件????????859??2018-08-24?08:31??FlowerMgr\WebRoot\WEB-INF\classes\service\FlowerService.class
?????文件???????3786??2018-08-24?08:31??FlowerMgr\WebRoot\WEB-INF\classes\servlet\FlowerServlet.class
?????文件???????1677??2018-08-24?08:26??FlowerMgr\WebRoot\WEB-INF\classes\util\PageObj.class
?????文件?????566623??2018-08-14?14:14??FlowerMgr\WebRoot\WEB-INF\lib\mysql-connector-java-5.1.0-bin.jar
?????文件????????834??2018-08-17?09:29??FlowerMgr\WebRoot\WEB-INF\web.xm
?????目錄??????????0??2018-08-20?18:23??FlowerMgr\WebRoot\WEB-INF\classes\dao
?????目錄??????????0??2018-08-20?18:23??FlowerMgr\WebRoot\WEB-INF\classes\entity
?????目錄??????????0??2018-08-20?18:23??FlowerMgr\WebRoot\WEB-INF\classes\service
............此處省略20個文件信息
- 上一篇:ganymed-ssh2-262.jar
- 下一篇:Eclipse-拼圖游戲
評論
共有 條評論