資源簡介
mysql+servlet+javabean的JavaWeb簡易網(wǎng)頁留言板,數(shù)據(jù)庫用的Mysql,服務(wù)器用tomact,內(nèi)涵代碼和簡易文檔圖片,下載個navicat即可運(yùn)行,本內(nèi)容只適用于在校大學(xué)生等初學(xué)者了解和學(xué)習(xí)MVC模式,謝謝

代碼片段和文件信息
package?come.javabean;
import?java.sql.*;
public?class?jdbcBean?{
Connection?con?=?null;
public?static?final?String?dbdriver=“com.mysql.cj.jdbc.Driver“;
public?static?final?String?url=“jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=UTC“;
public?static?final?String?username=“root“;
public?static?final?String?password=“WUHAILONG963“;
public?jdbcBean()
{
try{
Class.forName(dbdriver);
this.con?=?DriverManager.getConnection(urlusernamepassword);
}catch(Exception?e){ e.printStackTrace();}
}
public?Connection?getCon(){
if(this.con?==?null){
try{
Class.forName(dbdriver);
this.con?=?DriverManager.getConnection(urlusernamepassword);
}catch(SQLException?e){e.printStackTrace();}?catch?(ClassNotFoundException?e)?{ e.printStackTrace();
}
}
return?this.con;
}
public?void?closeSql()
{
try
{ if(this.con!=null)
{
this.con.close();
this.con=null;
}
}catch(Exception?e){ e.printStackTrace();}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-11-14?14:34??WebTest\
?????文件?????????842??2018-06-18?12:44??WebTest\.classpath
?????文件?????????907??2018-06-18?12:44??WebTest\.project
?????目錄???????????0??2018-06-20?10:50??WebTest\.settings\
?????文件?????????567??2018-06-18?12:44??WebTest\.settings\.jsdtscope
?????文件?????????364??2018-06-18?12:44??WebTest\.settings\org.eclipse.jdt.core.prefs
?????文件?????????473??2018-06-18?12:44??WebTest\.settings\org.eclipse.wst.common.component
?????文件?????????345??2018-06-18?12:44??WebTest\.settings\org.eclipse.wst.common.project.facet.core.xm
?????文件??????????49??2018-06-18?12:44??WebTest\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2018-06-18?12:44??WebTest\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2018-11-14?14:33??WebTest\WebContent\
?????目錄???????????0??2018-06-20?10:50??WebTest\WebContent\me
?????文件??????????39??2018-06-18?12:44??WebTest\WebContent\me
?????目錄???????????0??2018-06-20?10:50??WebTest\WebContent\WEB-INF\
?????目錄???????????0??2018-06-20?10:50??WebTest\WebContent\WEB-INF\lib\
?????文件?????2036609??2018-06-18?12:47??WebTest\WebContent\WEB-INF\lib\mysql-connector-java-8.0.11.jar
?????文件????????1151??2018-06-18?19:30??WebTest\WebContent\WEB-INF\web.xm
?????文件?????????676??2018-06-18?12:47??WebTest\WebContent\a.html
?????文件?????????739??2018-06-18?12:47??WebTest\WebContent\b.html
?????文件?????????419??2018-06-18?12:47??WebTest\WebContent\exit.jsp
?????文件?????????229??2018-06-18?12:47??WebTest\WebContent\false.html
?????文件????????1168??2018-06-18?21:54??WebTest\WebContent\main.jsp
?????文件?????????949??2018-06-18?19:30??WebTest\WebContent\success.jsp
?????目錄???????????0??2018-06-20?10:50??WebTest\build\
?????目錄???????????0??2018-06-20?10:50??WebTest\build\classes\
?????目錄???????????0??2018-06-20?10:50??WebTest\build\classes\come\
?????目錄???????????0??2018-06-20?10:50??WebTest\build\classes\come\javabean\
?????文件????????1080??2018-06-18?21:27??WebTest\build\classes\come\javabean\Note.class
?????文件?????????866??2018-06-18?12:47??WebTest\build\classes\come\javabean\User.class
?????文件????????5384??2018-06-18?21:28??WebTest\build\classes\come\javabean\UserinfoBean.class
?????文件????????1529??2018-06-18?12:47??WebTest\build\classes\come\javabean\jdbcBean.class
............此處省略16個文件信息
- 上一篇:登陸注冊JSP+MySQL頁面
- 下一篇:java簡單查詢天氣
評論
共有 條評論