實戰JBuilder7+WebLogic7(續Session bean) (轉)
實戰JBuilder7+LOGIC7存取MS SERVER2000(一)
劉曉巍: to:liuxiaowei2000@sina.com">liuxiaowei2000@sina.com
:namespace prefix = o ns = "urn:schemas--com::office" />
第一次寫文章,希望大家多多捧場,本文完全根據我的個人所寫,如有錯誤,懇請大家指正!
JBuilder7+WebLogic7 的
假設Jbuilder7和WebLogic7完畢,操作為:2000 server(SP2),為: SQLServer2000(SP2)。
JBuilder7的配置:
1. 修改環境變數TEMP和TMP 為不帶空格的目錄如:E:winnttemp
2. 啟動Jbuilder7,選擇:Tools->Configure Servers
3. 選中左側的Weblogic Application Server 6.x+,選中右邊的Enable Server
4. 將General->Home Directory設為WebLogic7的Home Directory如:E:/bea/weblogic700/server,正常的話Jbuilder7將自動為你添好其他的項。
5. 將Custom-> Installation Directory設為 JDK的安裝目錄,如:E:/bea/jdk131_02
6. 將Custom->BEA Home Directory設為WebLogic7的Home Director,如:E:/bea
7. 將Custom->ain Directory設為你的域目錄,如:E:/bea/user_projects/mydomain
8. 添好User name, Pass ,Domain name, Server name後,單擊OK退出。
9. 選擇:Tools->Enterprise Setup,單擊頁上的New, 按下表填寫相應資訊:
Name for this configuration = WelLogic 7.0
Path for ORB Tools = E:/bea/weblogic700/server
Library for Projects = WebLogic 6.x+ Deploy
IDL compiler command = idlj.exe
Commnad option for output directory = E:CORBAOutput(任意目錄,不要有空格)
單擊OK退出。
10.選擇Project->Default Project properties
在Path頁的Required libraries中將會看到WebLogic 6.x+ Client和WebLogic 6.x+ Deploy兩項,如果沒有,請檢查以上步驟是否正確。
11.選擇Server頁,單擊Single services for all service in project
在下拉選單中選擇WebLogic Application Server 6.x+,但擊OK退出,配置完畢。
WebLogic7的配置:
1. 啟動WebLogic7
2. 開啟,在位址列中輸入:
3. 輸入名和密碼
4. 在左邊的目錄樹中選中Services->JC->Connection Pools,單擊右側的Configure a new Connection Pool.,輸入以下資訊:
Configuration->General頁:
Name = Connection Pool
URL = jdbc:weblogic:mssqlserver4:northwind@localhost
classname = weblogic.jdbc.mssqlserver4.Driver
Properties : user = sa
Password = “”
單擊Create建立連線池。
Targets->Server頁:
將myserver(名稱)移至右側的列表中,但擊單擊Apply
5. 在左邊的目錄樹中選中Services->JDBC->Data s(或者TXData Sources),單擊右側的Configure a new JDBC Connection Pool.,輸入以下資訊:
Configuration->General頁:
Name = SQLServer Tx Data Source
JNDI Name = SQLServer
Pool Name = SQL Server Connection Pool
選中Emulate Two-Phase Commit for non-XA Driver和Row Prefetch Enabled
單擊Create建立資料來源。
Targets->Server頁:
將myserver(伺服器名稱)移至右側的列表中,但擊單擊Apply,配置完畢。
實戰1:連線SQLServer2000
1. 開啟JBuilder7選擇File->New project
在Name欄中輸入SQLServerDemo,Directory欄中輸入存放路徑(不要有空格),其他不變,單擊Finish。
2. 選擇File->New,選擇General->Application,單擊OK。
第一步,第二步和第三步都不用更改,直接Finish即可。
3. 回到JBuilder7的整合開發環境中,單擊右側的Designer頁設計窗體,在窗體中放入一個JscrollPane 和JtextArea 及三個按鈕,雙擊第一個按鈕輸入以下程式碼:
try
{
Class.forName("weblogic.jdbc.mssqlserver4.Driver");
Connection con = DriverManager.getConnection("jdbc:weblogic:mssqlserver4:northwind@localhost","sa","");//此處根據你的SQLServer帳戶而定。
Statement st = con.createStatement();
ResultSet res = st.executeQuery(" * from employees");
String line = "";
while (res.next())
line = line + res.getString("title")+"n";
jTextArea1.setText(line);
con.close();
}
catch (Exception ex)
{
jTextArea1.setText("error : "+ex.getMessage());
}
雙擊第二個按鈕輸入以下程式碼
Hashtable ht = new Hashtable();
ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
ht.put(Context.PROVR_URL,"t3://localhost:7001");
try
{
Context ctx = new InitialContext(ht);
DataSource ds = (DataSource)ctx.lookup("SQLServer");
Connection con = ds.getConnection("system","12345678");//此處是WebLogic7
的域使用者和密碼
Statement st = con.createStatement();
ResultSet res = st.executeQuery("select * from employees");
String line = "";
while (res.next())
line = line + res.getString("notes")+"n";
jTextArea1.setText(line);
con.close();
}
catch (Exception ex)
{
jTextArea1.setText("error : "+ex.getMessage());
}
執行WebLogic7,執行單擊第一個按鈕使用JDBC直接連線SQLServer並獲取資料,單擊第二個按鈕使用DataSource連線SQLServer並獲取資料。
實戰2:Session Bean
建立一個簡單的Bean:
1. 關閉所有工程:File->Close Projects
2. 選擇File->New project
在Name欄中輸入HelloDemo,Directory欄中輸入存放路徑(不要有空格),其他不變,單擊Finish。
3. 選擇File->New->Enterprise-> 2.0 Designer單擊OK。
在彈出的對話方塊中單擊new建立一個Moudle,在Name中輸入HelloMoudle單擊OK關閉當前對話方塊,再次單擊OK關閉對話方塊。
4. 在右側的工作區中單擊右鍵選擇:Create EJB->Session Bean,將Bean Name改為HelloBean
5. 右鍵單擊代表HelloBean的長方形,選擇Add->Method
按如下填寫:
Method Name = SayHello
Return Type = .lang.String
Input parameter 不添
Interface = remote
6. 右鍵單擊代表HelloBean的長方形,選擇 View Bean Source
按如下填寫SayHello():
public java.lang.String SayHello()
{
/**@todo Complete this method*/
return new String(“Hello World “);
}
7.按F9執行,在彈出的對話方塊中選擇Run頁,單擊New,在configure name處填寫Server Runtime Configuration,再選擇Run->Server,單擊OK關閉當前對話方塊,單擊OK開始編譯執行。執行起來之後在左上角的目錄樹中右鍵單擊HelloModule選擇:Deploy options for “HelloModule.jar”->Deploy來發布Bean。
建立客戶端:
1. 選擇File->New->Enterprise->EJB Test Client單擊OK。
選中Genrate method for 特斯廷remote interface calls with default arguments單擊OK。
2. 按如下填寫main():
public static void main(String[] args)
{
HelloBeanTestClient1 client = new HelloBeanTestClient1();
// Use the client to call one of the Home interface wrappers
// above, to create a Remote interface reference to the bean.
// If the return value is of the Remote interface type, you can use it
// to access the remote interface methods. You can also just use the
// client object to call the Remote interface wrappers.
client.create();
System.out.println(client.SayHello());
} 選擇Run->Run “HelloBeanTestClient1.java” using defaults執行。來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10748419/viewspace-990039/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 實戰JBuilder7+WebLogic7(四)續JMS+Message-Driven Bean (轉)UIWebBean
- JBuilder9.0+Weblogic7.0實戰篇之Session Bean篇 (轉)UIWebSessionBean
- 實戰JBuilder7+WebLogic7存取MS SQL Server2000(一) (轉)UIWebSQLServer
- session bean中的session如何理解?SessionBean
- session bean + dao +vo ???SessionBean
- 什麼時候用有狀態session bean,什麼時候用無狀態session bean (轉)SessionBean
- session bean 對 entity bean的訪問策略?SessionBean
- 一個Session Bean如何去呼叫另外一個Session Bean裡的方法?SessionBean
- JBuilder9+Weblogic7實戰篇Entity Bean運用(二) (轉)UIWebBean
- JBuilder9+Weblogic7實戰篇Entity Bean運用(四) (轉)UIWebBean
- JBuilder9+Weblogic7實戰篇Entity Bean運用(三) (轉)UIWebBean
- Spring實戰:裝配bean-自動化裝配beanSpringBean
- Choosing between HttpSession and Stateful session beanHTTPSessionBean
- Spring在單例bean中使用session、request範圍的beanSpring單例BeanSession
- JBuilder9+Weblogic7實戰篇之Entity Bean運用篇(一) (轉)UIWebBean
- shiro實戰系列(二)之入門實戰續
- CMP Bean在session bean後,資料怎麼返回給客戶端???BeanSession客戶端
- 如何使用bean:write輸出session中的資訊BeanSession
- spring2的session scope bean問題SpringSessionBean
- DVWA靶場實戰(九)——Weak Session IDSSession
- Spring的學習與實戰(續)Spring
- jbuilder7+weblogic7問題UIWeb
- ejb 的session bean 和儲存在servlet session中的一個java物件有何不同?SessionBeanServletJava物件
- session轉載Session
- 持續整合之 Spring Boot 實戰篇Spring Boot
- UI自動化實戰進階後續UI
- mysql sql 中實戰小技巧持續更新MySql
- 【轉】微服務實戰微服務
- Turbine實戰(下) (轉)
- 在CGI中實現session的想法和實現 (轉)Session
- 輕鬆實現session的mysql處理 (轉)SessionMySql
- 玩轉跟蹤(to owner session、other session)Session
- 不同jsp訪問同一個stateful session bean的困惑JSSessionBean
- 請教一個在Session Bean中使用JDBC的問題SessionBeanJDBC
- Java Bean Annotation Constraint Validation 未完待續JavaBeanAI
- spring4.1.8擴充套件實戰之七:控制bean(BeanPostProcessor介面)Spring套件Bean
- spring4.1.8擴充套件實戰之六:註冊bean(BeanDefinitionRegistryPostProcessor)Spring套件Bean
- ASP.NET Core 專案實戰(持續更新~~~)ASP.NET