資源描述:
《實(shí)驗(yàn)jsp與javabean》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。
1、實(shí)驗(yàn)6JSP與JavaBeanJavaBean是JSP中的一個重要技術(shù),其實(shí)質(zhì)是一個可以復(fù)用軟件組件。它們在容器中運(yùn)行并對外提供具體的業(yè)務(wù)邏輯操作功能。JavaBean可以分為可視化Bean和不可視化Bean??梢暬疊ean可以表示為簡單的GUI組件;不可視化JavaBean在后臺完成業(yè)務(wù)邏輯處理功能,例如訪問數(shù)據(jù)庫執(zhí)行查詢操作的JavaBean,這些JavaBean在運(yùn)行時刻不需要任何可視的界面。在JSP程序中所用的JavaBean一般以不可視的組件為主。1、實(shí)現(xiàn)數(shù)據(jù)庫添加、更新和刪除因?yàn)楝F(xiàn)在的網(wǎng)站或軟件系統(tǒng)都離不開數(shù)據(jù)
2、庫,所以對數(shù)據(jù)庫的操作是必需的。下面通過使用JavaBean實(shí)現(xiàn)了對數(shù)據(jù)庫進(jìn)行添加、更新和刪除操作的基本功能。通過此例的學(xué)習(xí)以達(dá)到熟練掌握通過JSP+JavaBean的方式實(shí)現(xiàn)對數(shù)據(jù)庫的操作,為以后的學(xué)習(xí)打下基礎(chǔ)?!裾莆赵贘ava中連接數(shù)據(jù)庫的方法●掌握在Java中向數(shù)據(jù)庫添加記錄的方法●掌握在Java中更新數(shù)據(jù)庫的方法●掌握在Java中刪除數(shù)據(jù)庫記錄的方法操作步驟(1)新建一個名為DBpool.java的文件,這個文件的作用是裝載數(shù)據(jù)庫連接驅(qū)動,獲得數(shù)據(jù)庫連接對象并連接數(shù)據(jù)庫.本實(shí)驗(yàn)采用的是mysql數(shù)據(jù)庫來操作的dbi
3、nfo.properties#這是mysql的連接屬性driver=com.mysql.jdbc.Driverusername=rootpassword=myadminurl=jdbc:mysql://localhost:3306/testpublicclassUserDAO{staticInputStreamis=null;staticPropertiespp=null;staticStringdriver=null;staticStringusername=null;staticStringpassword=null;
4、staticStringurl=null;ResultSetrs=null;Connectionconn=null;PreparedStatementpsm=null;static{try{is=UserDAO.class.getClassLoader().getResourceAsStream("com/yx/util/dbinfo.properties");pp=newProperties();pp.load(is);driver=pp.getProperty("driver");username=pp.getProp
5、erty("username");password=pp.getProperty("password");url=pp.getProperty("url");//加載驅(qū)動Class.forName(driver);}catch(Exceptione){e.printStackTrace();}finally{if(is!=null){try{is.close();}catch(IOExceptione){e.printStackTrace();}}is=null;}}//得到Connection連接publicConnec
6、tiongetConnection(){try{conn=DriverManager.getConnection(url,username,password);}catch(SQLExceptione){e.printStackTrace();}returnconn;}//添加用戶publicbooleanaddUser(Useruser){booleanflag=false;Stringsql="insertintouser(name,age)values(?,?)";conn=this.getConnection();
7、try{psm=conn.prepareStatement(sql);psm.setString(1,user.getName());psm.setInt(2,user.getAge());psm.executeUpdate();flag=true;}catch(SQLExceptione){e.printStackTrace();}finally{this.close(conn,psm,rs);returnflag;}}//遍歷所有用戶publicArrayListgetAllUser(){ArrayList
8、al=newArrayList();Stringsql="select*fromuser";conn=this.getConnection();try{psm=conn.prepareStatement(sql);rs=psm.executeQuery();while(rs.ne