您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關JBoss EJB CMP2如何實現(xiàn)性能測試的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
測試環(huán)境
操作系統(tǒng):Win2000
CPU:PIII733EB
Memory:512M
Application Server:JBoss-3.0.2
DBMS:SAP DB7.3
Java VM:JDK-1.4.1
Ant:1.5.1[@more@]測試方案?
*表結構
表:AUX_TYPE
COLUMN名 SAP DB類型 Java類型
AUX_ID (Primary Key) Integer Integer
AUX_DESC Varchar (50) String
表:TEST_NEWS
COLUMN名 SAP DB類型 Java類型
TID Integer Integer
AUX_ID (Foreign key reference to AUX_TYPE(AUX_ID)) Integer Integer
TNAME Varchar (30) String
TDESC Varchar (100) String
AMOUNT Integer Integer
*EJB結構
使用具有本地接口的EntityBean與表建立對應關系。使用一個無狀態(tài)的SessionBean與客戶端交互。SessionBean的作用是充當EntityBean的代理,并作為粗粒度的Bean提供遠程數(shù)據(jù)訪問。表AUX_TYPE主鍵的最大ID值也由SessionBean的(使用JDBC連接)方法提供。其他一些EJB QL不能實現(xiàn),針對數(shù)據(jù)庫特殊的查詢方法同樣可以在SessionBean中實現(xiàn)。
*測試代碼
…
private Category log = Category.getInstance(getClass());
private AuxTypeHome auxTypeHome = null;
private TestNewsHome testNewsHome = null;
private Context initial = null;
public void addNews(
Integer tId,
String tName,
String tDesc,
Integer amount,
String auxDesc) {
AuxType auxType = null;
try {
auxType = auxTypeHome.findByDesc(auxDesc);
log.info("@@@@@@@@" + auxType.getAuxDesc());
if (auxType == null)
throw new EJBException("AUX_TYPE為空!");
} catch (FinderException e) {
throw new EJBException("findAuxType:" + auxDesc + "出錯!");
}
try {
TestNews testNews = testNewsHome.create(tId, tName, tDesc, amount);
testNews.setAuxType(auxType);
} catch (CreateException e) {
throw new EJBException(
"create TestNews:" + tId + "," + tName + "出錯!");
}
}
private Connection connection = null;
private DataSource source = null;
public synchronized int getNextId() throws RemoteException, SQLException {
Statement stmt = null;
int id = -1;
try {
if (initial == null)
initial = new InitialContext();
if (source == null)
source = (DataSource) initial.lookup("java:/SapdbDS");
if (connection == null)
connection = source.getConnection();
stmt = connection.createStatement();
String sql = "select max(TID) from TEST_NEWS";
ResultSet rs = stmt.executeQuery(sql);
if (rs.next()) {
id = rs.getInt(1);
if (id <= 0) {
id = 1;
}
} else
id = 0;
} catch (NamingException e) {
} finally {
try {
if (stmt != null)
stmt.close();
} catch (Exception e) {
}
}
return id + 1;
}
public Collection findNews(String find) {
Collection news = null;
try {
news = testNewsHome.findAll();
} catch (FinderException e) {
throw new EJBException("findNews:" + find + "出錯!");
}
return news;
}
public void removeNews(Integer tId) {
try {
testNewsHome.remove(tId);
} catch (RemoveException e) {
throw new EJBException("removeNews:" + tId + " 出錯!");
}
}
private void getHomes() throws NamingException {
if (initial == null)
initial = new InitialContext();
auxTypeHome = getAuxTypeHome(initial);
testNewsHome = getTestNewsHome(initial);
}
public void ejbCreate() throws CreateException {
try {
getHomes();
} catch (NamingException e) {
throw new CreateException("初始化SessionBean出錯!");
}
}
/**
* @see javax.ejb.SessionBean#ejbActivate()
*/
public void ejbActivate() throws EJBException, RemoteException {
}
/**
* @see javax.ejb.SessionBean#ejbPassivate()
*/
public void ejbPassivate() throws EJBException, RemoteException {
}
/**
* @see javax.ejb.SessionBean#ejbRemove()
*/
public void ejbRemove() throws EJBException, RemoteException {
auxTypeHome = null;
testNewsHome = null;
initial = null;
source = null;
try {
if (connection != null)
connection.close();
} catch (Exception e) {
}
}
…
*測試流程
客戶端程序調(diào)用SessionBean的方法增加TEST_NEWS表的一行,TID值由ADO方法查詢,數(shù)據(jù)庫連接在ejbRemove方法中才釋放,減少連接所需要的時間。對于AUX_DESC,通過findByDesc方法查詢,如果查詢不為空則增加一行,查詢結果賦給TEST_NEWS的對象。
測試結果
操作:從AUX_TYPE查找按AUX_DESC匹配查詢AUX_TYPE,新增200個TEST_NEWS
費時:11276ms
操作:從AUX_TYPE查找按AUX_DESC匹配查詢AUX_TYPE,用JDBC DataSource從TEST_NEWS表中查找最大TID,新增200個TEST_NEWS
費時:15993ms
費時:12738ms(優(yōu)化JDBC Connection)
同時筆者測試了在數(shù)據(jù)量不斷增長時系統(tǒng)的性能,以下是結果:
插入行(插入前清空) 費時ms 費時ms (在已有行基礎上插入10行) 內(nèi)存占用,K
0 2214 22176
100 7200 1802 24452
200 12738 2894 34260
400 27499 2143 30600
600 50573 2704 33788
1000 134814 4226 51508
結論
當數(shù)據(jù)量倍增時,CMP表現(xiàn)出了接近成倍增加的資源消耗。這樣的結果將最終表現(xiàn)出系統(tǒng)對大數(shù)據(jù)量不適應,無法滿足要求。當筆者試圖測試4000行數(shù)據(jù)時,經(jīng)過數(shù)十分鐘漫長的等待,數(shù)據(jù)停留在3000多行,客戶端報內(nèi)存溢出的錯誤,這時的內(nèi)存占用接近100M。
感謝各位的閱讀!關于“JBoss EJB CMP2如何實現(xiàn)性能測試”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。