JSP學習筆記(五)—–JSP中使用JavaBean

來源:互聯網
上載者:User

1.       該執行個體主要告訴我們怎麼樣在JSP代碼中調用JavaBean構件

2.       使用JavaBean的優點是簡化了JSP代碼,介面代碼和邏輯代碼互相分離,便於程式員查看和調試

3.       該執行個體需要五個檔案:login.jsp,test.jsp, userbean.class

4.       首先看一下login.jsp

<html>

<center>

<form method=post action="http://127.0.0.1:8000/test.jsp">

username<input type=text name=username>

<br><br>

password<input type=password name=password>

<br><br>

<input type=submit value="註冊">

</form>

</center>

</html>

 

5.       test.jsp代碼如下:

<html>

<jsp:useBean id="hello" class="userbean" scope="session" />

<jsp:setProperty name="hello" property="*" />

your username is:<jsp:getProperty name="hello" property="username"/>

<br><br>

your password is:<jsp:getProperty name="hello" property="password"/>

<br><br>

<%

       out.println(hello.insert());    

%>

</html>

 

6.       JavaBean構件userbean.java代碼如下:

 

import java.sql.*;

public class userbean

{

       private String username;

       private String password;

      

       public void setUsername(String username)

       {

              this.username=username;

       }

       public void setPassword(String password)

       {

              this.password=password;

       }

       public String getUsername()

       {

              return username;

       }

       public String getPassword()

       {

              return password;

       }

       public String insert()

       {

              try

              {

                     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

                  Connection dbcon=DriverManager.getConnection("jdbc:odbc:test","sa","");

                  PreparedStatement stat=dbcon.prepareStatement(

                           "insert login values(?,?)");

                      stat.setString(1,username);

                      stat.setString(2,password);

                      stat.executeUpdate();

                      return "success";

           }

           catch(Exception e)

           {

                  System.out.println(e);

                  return e.toString();

          

              }

       }

}

 

7.       配置方法如下:

login,test放在j2ee的public_html中,userbean.class放在j2ee/lib/classes中

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.