簡體   English   中英

我在哪里可以找到Webshpere eXtreme Scale的maven依賴項?

[英]Where can i find the maven dependencies for Webshpere eXtreme Scale?

關於這一點,我一直在谷歌上搜索幾天了。 我正在嘗試開發一個spring boot應用程序(它將部署到Websphere Liberty Profile Server中),並將連接到Websphere Extreme規模以進行緩存。 我瀏覽了幾個文檔和指南,但是它們都沒有提供從maven構建的應用程序中找到連接到wx的依賴項的實際來源。

我假設所需的罐子應該與wxs liberty功能安裝捆綁在一起。 但我也無法在服務器的lib目錄中找到它。

我相信我正在尋找file = objectgrid.jar,groupId = com.ibm.websphere.objectgrid,artifactId = objectgrid,version = 8.6.0.2

任何連接到wxs的示例java maven應用程序的鏈接也會有所幫助。

提前致謝

所需的罐子確實包含在WXS Liberty安裝中。 然而,如不同的文檔中所述,namings不是objectgridogclient

用於開發wxs客戶端應用程序的唯一必需客戶端jar大小為15MB,名為com.ibm.ws.xs.client_1.1 ,位於[WASDir] / dev / ibm-api目錄中。

您可以將此jar添加到應用程序構建路徑並開發wxs客戶端應用程序。

如果您正在使用maven(我是),您可以使用mvn install:install-file -Dfile=? -DgroupId=? -DartifactId=? -Dversion=? -Dpackaging=jar在本地maven存儲庫中安裝上面的jar mvn install:install-file -Dfile=? -DgroupId=? -DartifactId=? -Dversion=? -Dpackaging=jar mvn install:install-file -Dfile=? -DgroupId=? -DartifactId=? -Dversion=? -Dpackaging=jar mvn install:install-file -Dfile=? -DgroupId=? -DartifactId=? -Dversion=? -Dpackaging=jar並在項目中使用已安裝的依賴項。

請注意,這些僅用於開發目的。(與所有Liberty功能一樣)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM