There is one I am aware of 
https://github.com/timothyjward/osgi.enroute.examples.jdbc/tree/jpa-example 
(not sure it is still working though) 

see 
http://osgi-dev.mail.osgi.narkive.com/HWK1VfIA/working-example-tx-control-with-jpa
 for some more details. 


Tim Jones 



From: "Raymond Auge via osgi-dev" <osgi-dev@mail.osgi.org> 
To: "Matthews, Kevin" <kevin.matth...@firstdata.com> 
Cc: "OSGi Developer Mail List" <osgi-dev@mail.osgi.org> 
Sent: Thursday, 7 December, 2017 12:10:43 PM 
Subject: Re: [osgi-dev] OSGI bundles install on IBM Liberty 

The JPA examples I'm aware of are hosted at Apache Aries [1]. 

They are not enroute, but I imagine by referencing those dependencies through 
one of the bnd maven repo types the things should work just as well. 

- Ray 

[1] [ https://github.com/apache/aries-jpa/tree/master/examples | 
https://github.com/apache/aries-jpa/tree/master/examples ] 

On Wed, Dec 6, 2017 at 6:05 PM, Matthews, Kevin < [ 
mailto:kevin.matth...@firstdata.com | kevin.matth...@firstdata.com ] > wrote: 





Is there a sample demo I can use that shows how to use OSGI enroute and 
Hibernate/JPA. I am currently working on a POC and I need to demo the OSGI 
route data access modularity. 



From: Raymond Auge [mailto: [ mailto:raymond.a...@liferay.com | 
raymond.a...@liferay.com ] ] 
Sent: Tuesday, December 05, 2017 1:24 PM 
To: Matthews, Kevin 
Cc: Peter Kriens; OSGi Developer Mail List 

Subject: Re: [osgi-dev] OSGI bundles install on IBM Liberty 














On Tue, Dec 5, 2017 at 12:41 PM, Matthews, Kevin < [ 
mailto:kevin.matth...@firstdata.com | kevin.matth...@firstdata.com ] > wrote: 


Hi Raymond, I see you work for liferay. I actually build an document management 
application using liferay 7.0 GA3 to replace our existing Repsoitory Manager. 
Using Liferay 7.0 gave me the inspiration in learning more about OSGI. I like 
also the fact Liferay uses gradle to build bundle with or without blade :) . I 
am trying to emulate the same thing I did with Liferay with our other 
Java/Spring applications . 





Glad to be of inspiration! ;) 





> "... standing on ye sholders of Giants." - Isaac Newton 





- Ray 




BQ_BEGIN





From: Raymond Auge [mailto: [ mailto:raymond.a...@liferay.com | 
raymond.a...@liferay.com ] ] 
Sent: Tuesday, December 05, 2017 12:32 PM 
To: Peter Kriens 
Cc: OSGi Developer Mail List; Matthews, Kevin 
Subject: Re: [osgi-dev] OSGI bundles install on IBM Liberty 





I had actually made a mistake in the suggested `-distro` instruction. 





I've corrected it in the app note. 


- Ray 





On Tue, Dec 5, 2017 at 12:19 PM, Raymond Auge < [ 
mailto:raymond.a...@liferay.com | raymond.a...@liferay.com ] > wrote: 








On Tue, Dec 5, 2017 at 12:09 PM, Peter Kriens < [ mailto:peter.kri...@aqute.biz 
| peter.kri...@aqute.biz ] > wrote: 


I’ve added these points to the Resolve App Note. [ 
https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_osgi_osgi.enroute.site_blob_gh-2Dpages_-5Fappnotes_resolving.md&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=5dgDiilIAAv4T5Pi2QAhoAIKfDx6C4voPPFXS-SftOE&e=
 | 
https://github.com/osgi/osgi.enroute.site/blob/gh-pages/_appnotes/resolving.md 
] 





Awesome! 





Thanks Peter! 


- Ray 




BQ_BEGIN






Kind regards, 





Peter Kriens 








On 5 Dec 2017, at 15:46, Raymond Auge via osgi-dev < [ 
mailto:osgi-dev@mail.osgi.org | osgi-dev@mail.osgi.org ] > wrote: 











On Tue, Dec 5, 2017 at 9:42 AM, Raymond Auge < [ 
mailto:raymond.a...@liferay.com | raymond.a...@liferay.com ] > wrote: 


Hey Kevin, 


Here's what I could find: "Deploying OSGi applications to Liberty" [1] 


Now, this may be a little complicated by the fact that the enroute model tends 
to guide you to resolve a whole runtime. Meanwhile with openliberty or 
WebSphere Liberty you are deploying into a container which already "contains a 
lot of features". 

The crux of the issue becomes "resolving only what you need to deploy". This is 
were the complication comes in. What you need at that point is a way to "find 
out what the container provides in a way that you can use this during resolve 
time". 


Currently the way to do that is to create what's called a "distro" jar of the 
target container. This distro is a JAR file which provides all the capabilities 
that the target container provides at one point in time. 


How do you create a distro? 


1) install the bnd remote agent bundle [2] in the target container runtime. 
This will automatically open a local socket on a default port used to the 
remote cli next. 


2) execute the following command using the bnd cli [3]: 





bnd remote distro -o ws.liberty-5.6.7.jar ws.liberty 5.6.7 





FYI, this "bnd" command is just an alias for invoking the executable bnd jar: 
"java -jar <bnd.jar> remote distro ..." 




BQ_BEGIN






3) take the jar "ws.liberty-5.6.7.jar" create by that and place it into the 
maybe the directory containing the bndrun file which is used to resolve your 
deployment jars. 


4) in the bndrun file add: 


-distro: file:${.}/ws.liberty-5.6.7.jar 


5) resolve... the result of the resolve should be the set of bundles you need 
to install to openliberty. 


What you need to bare in mind is that the distro file needs to be regenerated 
each time the liberty installation changes in any significant way otherwise you 
won't get the real state of the system needed to resolve against. 





I hope that makes some sense. 





Let me know if the instructions were clear and if it worked. 





- Ray 



[1] [ 
https://urldefense.proofpoint.com/v2/url?u=https-3A__www.ibm.com_support_knowledgecenter_en_SSEQTP-5Fliberty_com.ibm.websphere.wlp.doc_ae_twlp-5Fdep-5Fosgi.html&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=nvLyZLi-u2zZxyZDABhidNPzNiG4CP48UqizxJvO0uM&e=
 | 
https://www.ibm.com/support/knowledgecenter/en/SSEQTP_liberty/com.ibm.websphere.wlp.doc/ae/twlp_dep_osgi.html
 ] 


[2] [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__search.maven.org_remotecontent-3Ffilepath-3Dbiz_aQute_bnd_biz.aQute.remote.agent_3.5.0_biz.aQute.remote.agent-2D3.5.0.jar&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=x12qd0weK3DYeQDv9V-GpTsZU5_Ms2xgIfXtjlSHFNY&e=
 | 
http://search.maven.org/remotecontent?filepath=biz/aQute/bnd/biz.aQute.remote.agent/3.5.0/biz.aQute.remote.agent-3.5.0.jar
 ] 


[3] [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__search.maven.org_remotecontent-3Ffilepath-3Dbiz_aQute_bnd_biz.aQute.bnd_3.5.0_biz.aQute.bnd-2D3.5.0.jar&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=ha4v1OTeYF5iWCrc47eylrZCM6UuAAFW5cVwrALmI8Q&e=
 | 
http://search.maven.org/remotecontent?filepath=biz/aQute/bnd/biz.aQute.bnd/3.5.0/biz.aQute.bnd-3.5.0.jar
 ] 





On Tue, Dec 5, 2017 at 9:11 AM, Matthews, Kevin via osgi-dev < [ 
mailto:osgi-dev@mail.osgi.org | osgi-dev@mail.osgi.org ] > wrote: 


Hi Tim, a quick question. I am learning OSGI from osgi en route samples. In our 
environment, our monolithic application runs on IBM Websphere Liberty but I am 
doing a POC to convert to modular architecture then bundles to run on Websphere 
Liberty. Can I build bundles using BND en route from my eclipse and install 
these bundles on a Liberty server? I know liberty uses the equinox OSGI 
container. 


The information in this message may be proprietary and/or confidential, and 
protected from disclosure. If the reader of this message is not the intended 
recipient, or an employee or agent responsible for delivering this message to 
the intended recipient, you are hereby notified that any dissemination, 
distribution or copying of this communication is strictly prohibited. If you 
have received this communication in error, please notify First Data immediately 
by replying to this message and deleting it from your computer. 



_______________________________________________ 
OSGi Developer Mail List 
[ mailto:osgi-dev@mail.osgi.org | osgi-dev@mail.osgi.org ] 
[ 
https://urldefense.proofpoint.com/v2/url?u=https-3A__mail.osgi.org_mailman_listinfo_osgi-2Ddev&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=9fxz_bUNjKXN9MH6tRxIyMdQX4Hu6HNw4eTSnEF24dg&e=
 | https://mail.osgi.org/mailman/listinfo/osgi-dev ] 





-- 


[ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com_web_raymond.auge_profile&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=pVwg_G9fQa9f2mF0cxJUEt3jbrqZTVKd3lqQGZQF7Pc&e=
 | Raymond
 Augé ] (@rotty3000) 


Senior Software Architect [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com_&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=bLfM9BLLIw9feuk9UUsRpcXjRW1nB2pNPGZDVdRJzaA&e=
 | Liferay,
 Inc. ] (@Liferay) 


Board Member & EEG Co-Chair, [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__osgi.org_&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=VocS5zYRZyiXftmFPT0FCbd5OHZZKSMAuAu3RxLaVqc&e=
 | 
OSGi Alliance ] (@OSGiAlliance) 








-- 


[ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com_web_raymond.auge_profile&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=pVwg_G9fQa9f2mF0cxJUEt3jbrqZTVKd3lqQGZQF7Pc&e=
 | Raymond
 Augé ] (@rotty3000) 


Senior Software Architect [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com_&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=bLfM9BLLIw9feuk9UUsRpcXjRW1nB2pNPGZDVdRJzaA&e=
 | Liferay,
 Inc. ] (@Liferay) 


Board Member & EEG Co-Chair, [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__osgi.org_&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=VocS5zYRZyiXftmFPT0FCbd5OHZZKSMAuAu3RxLaVqc&e=
 | 
OSGi Alliance ] (@OSGiAlliance) 


_______________________________________________ 
OSGi Developer Mail List 
[ mailto:osgi-dev@mail.osgi.org | osgi-dev@mail.osgi.org ] 
[ 
https://urldefense.proofpoint.com/v2/url?u=https-3A__mail.osgi.org_mailman_listinfo_osgi-2Ddev&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=9fxz_bUNjKXN9MH6tRxIyMdQX4Hu6HNw4eTSnEF24dg&e=
 | https://mail.osgi.org/mailman/listinfo/osgi-dev ] 




BQ_END






-- 


[ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com_web_raymond.auge_profile&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=pVwg_G9fQa9f2mF0cxJUEt3jbrqZTVKd3lqQGZQF7Pc&e=
 | Raymond
 Augé ] (@rotty3000) 


Senior Software Architect [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=wrNnSroPW6ByUCTVnCJjXzwpuZ-slHk8PgfC8CVMVnI&e=
 | Liferay,
 Inc. ] (@Liferay) 


Board Member & EEG Co-Chair, [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__osgi.org&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=I__7kG1rKbMw937AUnqqdd1nHxsYR49kOM-0IWFO1jQ&e=
 | 
OSGi Alliance ] (@OSGiAlliance) 





-- 


[ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com_web_raymond.auge_profile&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=pVwg_G9fQa9f2mF0cxJUEt3jbrqZTVKd3lqQGZQF7Pc&e=
 | Raymond
 Augé ] (@rotty3000) 


Senior Software Architect [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=wrNnSroPW6ByUCTVnCJjXzwpuZ-slHk8PgfC8CVMVnI&e=
 | Liferay,
 Inc. ] (@Liferay) 


Board Member & EEG Co-Chair, [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__osgi.org&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=HH8Gw-cn_T-kd6gx_j2BbQ-yDw3Q20TuuUT5AHmRGgs&s=I__7kG1rKbMw937AUnqqdd1nHxsYR49kOM-0IWFO1jQ&e=
 | 
OSGi Alliance ] (@OSGiAlliance) 

BQ_END






-- 


[ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com_web_raymond.auge_profile&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=3mKh0jE7P8T8OeTPTZyf3PWIa5E-TrNoas6d_EBaSfI&s=W8uEM28Xbr4fAWFIzswB7foZqJV11pDLe31Cle1e_Lw&e=
 | Raymond
 Augé ] (@rotty3000) 


Senior Software Architect [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.liferay.com&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=3mKh0jE7P8T8OeTPTZyf3PWIa5E-TrNoas6d_EBaSfI&s=0t1nZtUUcxCKM5e8HqlvNMSJoPxXwN4CVVy2DBQEeWA&e=
 | Liferay,
 Inc. ] (@Liferay) 


Board Member & EEG Co-Chair, [ 
https://urldefense.proofpoint.com/v2/url?u=http-3A__osgi.org&d=DwMFaQ&c=ewHkv9vLloTwhsKn5d4bTdoqsmBfyfooQX5O7EQLv5TtBZ1CwcvjU063xndfqI8U&r=wKHHp1xupEN1UoR2CPDlg9US2Vs3om5ld5YqSsWMQX8&m=3mKh0jE7P8T8OeTPTZyf3PWIa5E-TrNoas6d_EBaSfI&s=Z_z5DfPOzznMe-PM0sh01ynjpJSpJZHE0cnLpDk2wzE&e=
 | 
OSGi Alliance ] (@OSGiAlliance) 

BQ_END




-- 
[ http://www.liferay.com/web/raymond.auge/profile | Raymond Augé ] (@rotty3000) 
Senior Software Architect [ http://www.liferay.com/ | Liferay, Inc. ] 
(@Liferay) 
Board Member & EEG Co-Chair, [ http://osgi.org/ | OSGi Alliance ] 
(@OSGiAlliance) 

_______________________________________________ 
OSGi Developer Mail List 
osgi-dev@mail.osgi.org 
https://mail.osgi.org/mailman/listinfo/osgi-dev 
_______________________________________________
OSGi Developer Mail List
osgi-dev@mail.osgi.org
https://mail.osgi.org/mailman/listinfo/osgi-dev

Reply via email to