程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> WebLogic運用DB的Java控件訪問數據庫

WebLogic運用DB的Java控件訪問數據庫

編輯:關於JAVA
 一、方法

  WebLogic頁面與數據通信時,一般采用Java控件直接訪問數據連接池,數據的直接操作都定義在Java控件中,頁面流做為數據的邏輯處理單元,普通頁面做為顯示層。可以看出WebLogic這個方法是典型的三層結構,數據層(Java控件),業務邏輯層(頁面流),顯示層(頁面)。

  二、建立連接池,數據源

  配置config.XML文件,這裡用的是WebLogic自帶的E:\bea\weblogic81\samples\domains\workshop的cgServer。

  <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"

  LoginDelaySeconds="1" MaxCapacity="20" Name="liwei"

  PassWordEncrypted="{3DES}WBNJPYUOAvE=" PropertIEs="user=liwei"

  Targets="cgServer" URL="jdbc:Oracle:thin:@localhost:1521:wincn"/>

  <JDBCTxDataSource JNDIName="liwei" Name="liwei" PoolName="liwei" Targets="cgServer"/>

  或者 工具->WebLogic Server->數據源查看器->新建數據源 步驟比較簡單,主要輸入對應參數:

  DriverName="oracle.jdbc.driver.OracleDriver"

  URL="jdbc:Oracle:thin:@localhost:1521:wincn"

  然後用戶名密碼即可。

  以上內容可參看《Weblogic中JSP連接數據庫》一文。

  

  三、相關頁面

  Test\TestWeb\recordset\RecordsetController.jpf

  Test\TestWeb\recordset\index.JSP

  Test\TestWeb\recordset\test.jcxJava控件

  四、數據庫

  CREATE TABLE TEST(

  AVARCHAR2(10),

  BVARCHAR2(10),

  CVARCHAR2(10),

  DVARCHAR2(10)

  )

  五、數據層(

Java控件)

  本次示例使用tblTest自定義靜態類實現返回數據集。(還可以使用netui:gird+RecordSet實現,參見自帶示例)其中update方法與insert方法十分類似,故未提供具體的實現代碼。

  數據層並沒有什麼復雜之處,只是對邏輯層(頁面流)提供足夠的數據操作接口。tblTest自定義的靜態類是完成數據傳遞必不可少的環節。

  Test\TestWeb\recordset\test.jcx 全代碼:

  package recordset;

  import com.bea.control.*;

  import Java.sql.SQLException;

  /*

  * @jc:connection data-source-jndi-name="liwei"

  */

  public interface test extends DatabaseControl, com.bea.control.ControlExtension

  {

  /**

  * @jc:sql statement::

  *INSERT INTO TEST (A,B,C,D)

  *VALUES ({_A},{_B},{_C},{_D})

  * ::

  */

  public int insert( String _A, String _B,String _C,String _D );

  /**

  * @jc:sql statement::

  * UPDATE TEST SET B = {_B} ,C = {_C} ,D = {_D} WHERE A = {_A}

  * ::

  */

  public int update( String _A, String _B,String _C,String _D );

  /**

  * @jc:sql statement::

  * DELETE TEST WHERE A = {_A}

  * ::

  */

  public int delete( String _A );

  /**

  * @jc:sql statement::

  * SELECT * FROM TEST WHERE A = {_A}

  * ::

  */

  public tblTest select( String _A );

  /**

  * @jc:sql statement::

  * SELECT * FROM TEST

  * ::

  */

  public tblTest[] selectAll();

  public static class tblTest implements Java.io.Serializable

  {

  public String A;

  public String B;

  public String C;

  public String D;

  }

  }共2頁。

  六、邏輯層(頁面流)

  Test\TestWeb\recordset\RecordsetController.jpf 主要代碼,省略了自動生成部分。

  public class RecordsetController extends PageFlowController

  {

  /*

  *

  * @common:control

  */

  private test recTest;//定義數據接口

  private test.tblTest[] recNew;//定義數據集

  //因為示例連接的是英文數據庫,會存在亂碼問題,下面是轉碼的函數,這也充分

  //說明了,邏輯層在處理數據的關鍵所在。

  private String getGBString(String strIn)

  {

  try

  {

  byte[] tmpByte=strIn.getBytes("ISO8859-1");

  return new String(tmpByte,"gb2312");

  }

  catch(Exception e)

  {

  return "";

  }

  }

  //返回全記錄,調用recTest的selectAll,接口函數

  public test.tblTest[] getAll()

  {

  recNew=recTest.selectAll();

  int i;

  for(i=0;i<recNew.length;i++)

  {

  recNew[i].A=getGBString(recNew[i].A);

  recNew[i].B=getGBString(recNew[i].B);

  recNew[i].C=getGBString(recNew[i].C);

  recNew[i].D=getGBString(recNew[i].D);

  }

  return recNew;

  }

  //添加數據,這時通過頁面傳遞的參數值,調用接口Add數據

  /**

  * @jpf:action

  * @jpf:forward name="success" path="index.JSP"

  */

  public Forward add()

  {

  recTest.insert(this.getRequest().getParameter("a"),

  this.getRequest().getParameter("b"),this.getRequest().getParameter("c"),

  this.getRequest().getParameter("d"));

  return new Forward( "success" );

  }

  //刪除數據

  /**

  * @jpf:action

  * @jpf:forward name="success" path="index.JSP"

  */

  public Forward delete()

  {

  recTest.delete(this.getRequest().getParameter("ToDelete"));

  return new Forward( "success");

  }

  /**

  * 此方法代表進入頁面流的入口

  * @jpf:action

  * @jpf:forward name="success" path="index.JSP"

  */

  protected Forward begin()

  {

  return new Forward("success");

  }

  }

  七、顯示層(頁面)

  Test\TestWeb\recordset\index.JSP 最外層顯示,查看下面完全代碼時,可以看到netui控件的極大靈活性。

  技術難點並不多,這裡使用的是netui-data:repeater,重復獲取記錄集數據。

  <body>

  <table border=1>

  <tr>

  <td width="100" class="header-text">A</td>

  <td width="100" class="header-text">B</td>

  <td width="100" class="header-text">C</td>

  <td width="100" class="header-text">D</td>

  </tr>

  <netui-data:repeater dataSource="{pageFlow.all}">

  <netui-data:repeaterHeader> </netui-data:repeaterHeader>

  <netui-data:repeaterItem>

  <tr>

  <td width="100" class="row-text"><a href="#"

  onclick="window.alert('<netui:content

  value='{container.item.A}-{container.item.B}-

  {container.item.C}-{container.item.D}'/>')"><netui:label

  value="{container.item.A}"/></a></td>

  <td width="100" class="row-text"><netui:label

  value="{container.item.B}"/></td>

  <td width="100" class="row-text"><netui:label

  value="{container.item.C}"/></td>

  <td width="100" class="row-text"><netui:label

  value="{container.item.D}"/></td>

  <td>

  <netui:anchor action="delete" onClick=

  "return(window.confirm('Del?'))">

  <netui:parameter name="ToDelete"

  value="{container.item.A}"/>

  Delete

  </netui:anchor>

  </td>

  </tr>

  </netui-data:repeaterItem>

  <netui-data:repeaterFooter> </netui-data:repeaterFooter>

  </netui-data:repeater>

  </table>

  <hr>

  <netui:form action="add" >

  A:<input type="text" name="a"/><br>

  B:<input type="text" name="b"/><br>

  C:<input type="text" name="c"/><br>

  D:<input type="text" name="d"/><br>

  <input type="submit" value="add">

  </netui:form>

  </body>

  八、小結

  以前對java的了解為0,因項目迫切需要適當的研究下WebLogic,作為入門級的選手就能感受到WebLogic魅力的一二。清晰的層次非常便於組織項目的架構。頁面流在web開發過程可為核心,結合表示層的netui控件,將大量腳本可以化為簡單輕松的面向對象的Java語句。不管是前面提到的樹形,還是本文的數據,隨意而不零亂卻是有機的整體。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved