如果不用框架的話,可以直接在Jsp中完成的。
創(chuàng)新互聯(lián)專注于延慶網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供延慶營銷型網(wǎng)站建設(shè),延慶網(wǎng)站制作、延慶網(wǎng)頁設(shè)計、延慶網(wǎng)站官網(wǎng)定制、微信平臺小程序開發(fā)服務(wù),打造延慶網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供延慶網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
如果用Hibernate框架的話會是更簡單的,直接把他的xml文件考過去他就能給你直接配置鏈接數(shù)據(jù)了。
用java鏈接MySQL是這么寫的:
12345678910111213141516171819202122232425262728293031323334353637import java.sql.*;public class DatabaseCon{private final String DBDRIVER="com.mysql.jdbc.Driver";private final String DBURL="jdbc:mysql://localhost:3306/admin";//admin是你的數(shù)據(jù)庫名private final String DBUSER="root"; private final String DBPASS="root";private Connection con=null;public DatabaseCon(){try{Class.forName(DBDRIVER);this.con=DriverManager.getConnection(DBURL,DBUSER,DBPASS);con.setAutoCommit(false);}catch(Exception e){System.out.println("連接數(shù)據(jù)庫出現(xiàn)錯誤:"+e.getMessage());}}//構(gòu)造函數(shù),用來連接數(shù)據(jù)庫,只要一旦實例化,就算已經(jīng)連接上了數(shù)據(jù)庫public Connection getConnection(){return this.con;}//取得數(shù)據(jù)庫的連接public void close(){try{if(!this.con.isClosed())this.con.close();}catch(Exception e){System.out.println("數(shù)據(jù)庫關(guān)閉出現(xiàn)異常:"+e.getMessage());}}}1然后再從JSP頁面中調(diào)用就行了。1最后寫SQL語句進行增刪改查了。1具體怎么寫你就自己聯(lián)系一下吧
一般使用下面的結(jié)構(gòu):
?php
mysql_connect('127.0.0.1','root','123456');//使用你自己的密碼
$sql='select * from 數(shù)據(jù)庫.表名';
$res=mysql_query($sql);
echo 'table';
while ($row=mysql_fetch_array($res)){
echo "trtd$row[0]td$row[1]";
}
echo '/table';
mysql_free_result($res);
mysql_close();
?
Eclipse 連接MySql數(shù)據(jù)庫總結(jié)
一、在MySql中創(chuàng)建數(shù)據(jù)庫,并創(chuàng)建表,向表中插入數(shù)據(jù)
1、創(chuàng)建數(shù)據(jù)庫
2、創(chuàng)建表
3、向表中插入數(shù)據(jù)(這里插入三條測試數(shù)據(jù))
二、配置Eclipse。
配置之前請先下載mysql-connector-java-5.1.15-bin.jar文件。
右鍵單擊包所在的工程包(project),Build Path --- Configure Build Path,在彈出的窗口中選擇 Add External JARs。把下載并解壓出來的mysql-connector-java-5.1.15-bin.jar選中。如圖
三、編寫連接代碼。
數(shù)據(jù)庫名:select_test
用戶名:root
密碼:123456
連接成功后顯示teacher_table表中的數(shù)據(jù)。
總結(jié):Elipse連接MySql數(shù)據(jù)庫要求下載mysql-connector-java-5.1.15-bin.jar文件。
看你用什么。直接用jsp連接我不知道。
我使用jdbc+servlet或者框架。配置數(shù)據(jù)庫連接信息如:url,dirver.user.pwd
然后根據(jù)請求映射servlet發(fā)送到JSP。然后顯示