SlideShare a Scribd company logo
1
<Insert Picture Here>
OSGi and Java EE: A Hybrid Approach to Enterprise Java Application
Development
Sanjeeb Sahoo
Staff Engineer, Sun Microsystems India Pvt. Ltd.
2
The following is intended to outline our general
product direction. It is intended for information
purposes only, and may not be incorporated into any
contract. It is not a commitment to deliver any
material, code, or functionality, and should not be
relied upon in making purchasing decisions.
The development, release, and timing of any
features or functionality described for Oracle’s
products remains at the sole discretion of Oracle.
Safe Harbor Statements
3
The preceding is intended to outline our general
product direction. It is intended for information
purposes only, and may not be incorporated into any
contract. It is not a commitment to deliver any
material, code, or functionality, and should not be
relied upon in making purchasing decisions.
The development, release, and timing of any
features or functionality described for Oracle’s
products remains at the sole discretion of Oracle.
4
<Insert Picture Here>
Agenda
• OSGi 101
• OSGi meets Java EE – Hybrid Applications
• Advanced usecases
• Hybrid Application Demo
• Q & A
5
<Insert Picture Here>
Agenda
• OSGi 101
• OSGi meets Java EE – Hybrid Applications
• Advanced usecases
• Hybrid Application Demo
• Q & A
6
OSGi
Service oriented
dynamic
module system
for Java
7
OSGi Layers
8
Module Layer
• Bundle – a unit of modularity in OSGi
• Encapsulation
• Lifecycle independent of the JVM
• Versionable
• Packaged as a JAR (classes + Manifest with OSGi
metadata)
• Very explicit dependency specification
• Well defined dependency resolution rules
9
Bundle-SymbolicName: com.acme.hello.startup
Bundle-Name: Hello World OSGi Sample
Bundle-Version: 1.0.1
Bundle-ManifestVersion: 2
Bundle-Activator: com.acme.hello.startup.MyActivator
Export-Package: com.acme.hello.startup;version=1.0.0
Import-Package: org.osgi.framework;version=1.3
OSGi Metadata
10
Classloading in OSGi
Image from the OSGi R4 Core Specification
11
Lifecycle Layer
• Provides an API to manage bundles
– BundleContext.install
– BundleContext.uninstall
– Bundle.update
• BundleActivator
• BundleListener – listen to BundleEvents
– Synchronous
– Asynchronous
12
Bundle Lifecycle
Image from the OSGi R4 Core Specification
13
Service Layer
• In-VM SOA
• Service Registry
– Register
– Unregister
• Service is a POJO
• Service Dynamism
– Service tracking
• Service Discovery
– LDAP filter based queries
14
Interactions between OSGi Layers
Image from the OSGi R4 Core Specification
15
OSGi benefits – a recap
• Layered approach
• Modularity
– Enforces modularity
– Ensures class-space consistency
– Enables component reuse
– Supports versioning and evolution
• Dynamism
– Bundles
– Services
• Ease of deployment and management
– OBR
• Bundle deployment order is not relevant
– Faster deployment cycle
16
OSGi meets Java EE
17
<Insert Picture Here>
Agenda
• OSGi 101
• OSGi meets Java EE – Hybrid Applications
• Advanced usecases
• Hybrid Application Demo
• Q & A
18
Java EE
Platform of choice for enterprise applications
• Widely used APIs (JPA, JTA, JAXB, JNDI)
• Component Models (Servlet, EJB, JAX-RS)
• Frameworks (JSF, CDI)
• Ease of Use (Annotations, Convention over
Configuration)
• Platform provided infrastructure services
(Transaction, Security, Persistence, Remoting)
• Tools (IDE, Management, Monitoring)
• Ubiquitous deployment platform for enterprise
applications
19
Hybrid Applications
Meeting of the two worlds
• OSGi + Java EE = Hybrid application
• Hybrid application
– An OSGi bundle
– And a Java EE Archive
• Leverage the capabilities of both the platforms
– Enterprise applications can now
• be built as modular OSGi bundles
• use OBR, Config Admin, service tracking, etc.
– OSGi bundles can now use Java EE services like JTA, JPA,
etc.
20
Current State
• OSGi Enterprise Expert Group (EEG)
– Relased OSGi Service Platform Enterprise Specification 4.2
in 2010
• Open source efforts
– Project GlassFish
– Project Aries
– Eclipse Gemini
21
OSGi/Web Application (WAB)
• Web Application Bundle (WAB)
– WAR + OSGi metadata + Web-ContextPath header
• Can use all enterprise APIs (like JPA, JTA)
• Wrapped WAR support
– webbundle: URL scheme
22
Bundle-SymbolicName: com.acme.hellowab
Bundle-Name: Hello World OSGi Web Application
Bundle-Version: 1.0.0
Bundle-ManifestVersion: 2
Bundle-Activator: com.acme.hellowab.MyActivator
Import-Package: javax.servlet; javax.servlet.http; version=3.0,
org.osgi.framework; version=1.5
Bundle-ClassPath: WEB-INF/classes, WEB-INF/lib/foo.jar
Web-ContextPath: /hello
OSGi Metadata of a WAB
23
Hybrid application bundle lifecycle
24
Enterprise OSGi Specifications
• OSGi/Web Application
• OSGi/JPA
• OSGi/JDBC
• OSGi/JTA
• OSGi/JNDI
• OSGi/HTTP Service
• OSGi Blueprint Service
25
EE APIs in OSGi
• OSGi/JDBC
– JDBC driver as DataSourceFactory
– Dynamic discovery of driver details
– Multiple versions of same driver
• OSGi/JTA
– JTA artifacts available as OSGi Services
• OSGi/JPA
– Enhancement of JPA entities at runtime
– Same packaging rules as JPA and also deploy entities as a
bundle
– Shared Persistence Unit and thereby shared second level
cache
26
Tools
• BND (http://www.aqute.biz/Code/Bnd)
– de-facto tool for OSGi metadata generation
– maven-bundle-plugin
– Ant task
• IDE
– Eclipse
– NetBeans
– IntelliJ IDEA
27
Advanced Usecases
28
<Insert Picture Here>
Agenda
• OSGi 101
• OSGi meets Java EE – Hybrid Applications
• Advanced usecases
• Hybrid Application Demo
• Q & A
29
OSGi/EJB Application
• Allows you to develop managed, transactional, secure
OSGi services with very little knowledge of OSGi
• Make your existing EJB service available to OSGi
clients with little effort
• Achieved through simple manifest metadata
– Export-EJB: ALL/None/<names of stateless local EJB>
30
Bundle-SymbolicName: com.acme.helloEjbOsgi
Bundle-Name: Hello World OSGi EJB Bundle
Bundle-Version: 1.0.0
Bundle-ManifestVersion: 2
Import-Package: javax.ejb; version=3.0,
Export-EJB: ALL
OSGi Metadata of an OSGi/EJB bundle
31
CDI
• Brings type-safe dependency injection to EE platform
– Strong typing and loose coupling
• Well defined life cycle of stateful objects bound to life
cycle contexts
• Ability to decorate and intercept injected Beans
• An event notification model
• An ability to develop portable extensions that
integrates with the container to extend the runtime
32
GlassFish CDI/OSGi Portable Extension
• Use of CDI for type safe injection of OSGi services
@WebServlet(urlPatterns = “/login”)
public class FooServlet implements HttpServlet {
    @Inject 
    @org.glassfish.osgicdi.OSGiService(
          dynamic=”true”, 
          timeout = 200, 
          serviceCriteria=<an ldap query >)
    FooService foo;
}
33
Demo: Putting them
together
34
Demo schematic
• WAB
• JPA- LAZY loading
• EJB as Service
• OSGi Service Injection
• OBR
• Security/Transaction
Context propagation
Simple
OSGi
Bundle
OSGi
Service
Simple
OSGi
Service
EJB
OSGi
Service
Advanced
WAB
Simple
WAB
35
Call To Action
• Want to build hybrid applications?
– Try our tutorial at http://tinyurl.com/osgieehol
• Want to try out?
– Use GlassFish 3.1 trunk builds from http://glassfish.org
• Questions?
– users@glassfish.dev.java.net
36
References
• OSGi Service Platform Core and Enterprise
Specification 4.2
– http://www.osgi.org
• Project GlassFish
– http://glassfish.org
• Hybrid application samples
– http://wikis.sun.com/display/GlassFish/BlogsGfOsgi
37
<Insert Picture Here>
Agenda
• OSGi 101
• OSGi meets Java EE – Hybrid Applications
• Advanced usecases
• Hybrid Application Demo
• Q & A
38
<Insert Picture Here>
OSGi and Java EE: A Hybrid Approach to Enterprise Java Application
Development
Sanjeeb Sahoo
Staff Engineer, Sun Microsystems India Pvt. Ltd.

More Related Content

PDF
Use Case: Building OSGi Enterprise Applications (QCon 14)
PDF
OSGi enRoute Unveiled - P Kriens
PDF
Embrace Change - Embrace OSGi
PDF
Lessons learned from a large scale OSGii web app - P Bakker & J de Vreede
PDF
Benefits of OSGi in Practise
PDF
Modular Java applications with OSGi on Apache Karaf
PPTX
Java Modularity with OSGi
PDF
Karaf ee-apachecon eu-2012
Use Case: Building OSGi Enterprise Applications (QCon 14)
OSGi enRoute Unveiled - P Kriens
Embrace Change - Embrace OSGi
Lessons learned from a large scale OSGii web app - P Bakker & J de Vreede
Benefits of OSGi in Practise
Modular Java applications with OSGi on Apache Karaf
Java Modularity with OSGi
Karaf ee-apachecon eu-2012

What's hot (20)

PDF
Concierge - Bringing OSGi (back) to Embedded Devices
PDF
Boston 2011 OTN Developer Days - GlassFish
PDF
GlassFish 3.1 – Simplifying your Java EE 6 Development and Deployment @ JAX L...
PDF
OTN Developer Days - GlassFish
PDF
GlassFish Community and future larochelle
PDF
Java EE 6 Clustering with Glassfish 3.1
PDF
GlassFish Server 3.1: Deploying your Java EE 6 Applications
PPTX
Java EE Arquillian Testing with Docker & The Cloud
PDF
JavaCro'14 - WebLogic-GlassFish-JaaS Strategy and Roadmap – Duško Vukmanović
PDF
What's next for Java API for WebSocket (JSR 356)
PDF
µServices Architecture @ EPAM WOW 2015
PDF
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
PPT
Developing modular Java applications
PDF
Deploying Java EE 6 Apps in a Cluster: GlassFish 3.1 at Dallas Tech Fest 2011
PPTX
Migrating From Applets to Java Desktop Apps in JavaFX
PPTX
Tecnologias Oracle em Docker Containers On-premise e na Nuvem
PDF
RESTful Services and Distributed OSGi - 04/2009
PDF
µServices for the rest of us - karl pauls
PPTX
Modular Java
PDF
Nuxeo WebEngine and GlassFish v3
Concierge - Bringing OSGi (back) to Embedded Devices
Boston 2011 OTN Developer Days - GlassFish
GlassFish 3.1 – Simplifying your Java EE 6 Development and Deployment @ JAX L...
OTN Developer Days - GlassFish
GlassFish Community and future larochelle
Java EE 6 Clustering with Glassfish 3.1
GlassFish Server 3.1: Deploying your Java EE 6 Applications
Java EE Arquillian Testing with Docker & The Cloud
JavaCro'14 - WebLogic-GlassFish-JaaS Strategy and Roadmap – Duško Vukmanović
What's next for Java API for WebSocket (JSR 356)
µServices Architecture @ EPAM WOW 2015
From XPages Hero to OSGi Guru: Taking the Scary out of Building Extension Lib...
Developing modular Java applications
Deploying Java EE 6 Apps in a Cluster: GlassFish 3.1 at Dallas Tech Fest 2011
Migrating From Applets to Java Desktop Apps in JavaFX
Tecnologias Oracle em Docker Containers On-premise e na Nuvem
RESTful Services and Distributed OSGi - 04/2009
µServices for the rest of us - karl pauls
Modular Java
Nuxeo WebEngine and GlassFish v3
Ad

Viewers also liked (8)

PDF
Sania: Syntactic and Semantic Analysis for Automated Testing against SQL Inje...
PPTX
Java, app servers and oracle application grid
PDF
Structuring software systems with OSGi - Ulf Fildebrandt
PDF
Microsoft Sharepoint and Java Application Development
PPTX
Creating Dynamic Web Application Using ASP.Net 3 5_MVP Alezandra Buencamino N...
PPTX
Scalable Java Application Development on AWS
PPT
Web Applications and Deployment
Sania: Syntactic and Semantic Analysis for Automated Testing against SQL Inje...
Java, app servers and oracle application grid
Structuring software systems with OSGi - Ulf Fildebrandt
Microsoft Sharepoint and Java Application Development
Creating Dynamic Web Application Using ASP.Net 3 5_MVP Alezandra Buencamino N...
Scalable Java Application Development on AWS
Web Applications and Deployment
Ad

Similar to OSGi & Java EE: A hybrid approach to Enterprise Java Application Development, Sahoo (20)

PDF
OSGi and Java EE: A Hybrid Approach to Enterprise Java Application Development
PDF
OSGi and Java EE in GlassFish - Tech Days 2010 India
PDF
GlassFish OSGi - Java2days 2010
PDF
OSGi user forum dc metro v1
PDF
OSGi User Forum US DC Metro
PPTX
Introduction to OSGGi
PDF
OSGi on Google Android using Apache Felix
PDF
OSGi introduction
PPTX
PDF
De leukste Bug
PPTX
Hybrid Applications
PDF
Case Study: Plus Retail - Moving from the Old World to the New World
PPTX
Osgi platform
PPTX
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
PPTX
ODP
IBM Impact session CICS & java a tale of liberty
PDF
Enterprise OSGi at eBay
PDF
WebLogic Event Server - Alexandre Alves, BEA
PDF
Eclipse plug in development
PPT
OSGi For Java Infrastructures [5th IndicThreads Conference On Java 2010, Pune...
OSGi and Java EE: A Hybrid Approach to Enterprise Java Application Development
OSGi and Java EE in GlassFish - Tech Days 2010 India
GlassFish OSGi - Java2days 2010
OSGi user forum dc metro v1
OSGi User Forum US DC Metro
Introduction to OSGGi
OSGi on Google Android using Apache Felix
OSGi introduction
De leukste Bug
Hybrid Applications
Case Study: Plus Retail - Moving from the Old World to the New World
Osgi platform
Modularity of The Java Platform Javaday (http://javaday.org.ua/)
IBM Impact session CICS & java a tale of liberty
Enterprise OSGi at eBay
WebLogic Event Server - Alexandre Alves, BEA
Eclipse plug in development
OSGi For Java Infrastructures [5th IndicThreads Conference On Java 2010, Pune...

More from OpenBlend society (13)

PDF
Byteman and The Jokre, Sanne Grinovero (JBoss by RedHat)
PDF
SOA architecture patterns, Matjaž Jurič (FRI/Univerza v Ljubljani)
PDF
Seam 3 from a Web developer’s point of view, Matija Mazi (Parsek)
PDF
National Reference runtime environment, Boris Šaletić (MJU)
PDF
Memory is the new disk, disk is the new tape, Bela Ban (JBoss by RedHat)
PDF
Introducing Hibernate OGM: porting JPA applications to NoSQL, Sanne Grinovero...
PDF
Java SE 7 - The Platform Evolves, Dalibor Topić (Oracle)
PDF
How to cuddle your EJBs, Carlo de Wolf
PDF
Enterprise Java Virtualization, Sacha Labourey
PDF
Tackling Actual Problems on the Wings of the Netbeans Platform, Jure Polutnik
PDF
Android Up Close, Martin Sonc
PDF
Successful Application Lifecycle Management in heterogeneous environments, Ma...
PDF
Becoming an Open Source developer, Dimitris Andreadis
Byteman and The Jokre, Sanne Grinovero (JBoss by RedHat)
SOA architecture patterns, Matjaž Jurič (FRI/Univerza v Ljubljani)
Seam 3 from a Web developer’s point of view, Matija Mazi (Parsek)
National Reference runtime environment, Boris Šaletić (MJU)
Memory is the new disk, disk is the new tape, Bela Ban (JBoss by RedHat)
Introducing Hibernate OGM: porting JPA applications to NoSQL, Sanne Grinovero...
Java SE 7 - The Platform Evolves, Dalibor Topić (Oracle)
How to cuddle your EJBs, Carlo de Wolf
Enterprise Java Virtualization, Sacha Labourey
Tackling Actual Problems on the Wings of the Netbeans Platform, Jure Polutnik
Android Up Close, Martin Sonc
Successful Application Lifecycle Management in heterogeneous environments, Ma...
Becoming an Open Source developer, Dimitris Andreadis

Recently uploaded (20)

PPTX
MYSQL Presentation for SQL database connectivity
PDF
Encapsulation theory and applications.pdf
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPT
Teaching material agriculture food technology
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Machine learning based COVID-19 study performance prediction
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
MYSQL Presentation for SQL database connectivity
Encapsulation theory and applications.pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Spectral efficient network and resource selection model in 5G networks
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Electronic commerce courselecture one. Pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Understanding_Digital_Forensics_Presentation.pptx
Review of recent advances in non-invasive hemoglobin estimation
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Teaching material agriculture food technology
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
NewMind AI Monthly Chronicles - July 2025
20250228 LYD VKU AI Blended-Learning.pptx
Mobile App Security Testing_ A Comprehensive Guide.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Machine learning based COVID-19 study performance prediction
Dropbox Q2 2025 Financial Results & Investor Presentation

OSGi & Java EE: A hybrid approach to Enterprise Java Application Development, Sahoo

  • 1. 1 <Insert Picture Here> OSGi and Java EE: A Hybrid Approach to Enterprise Java Application Development Sanjeeb Sahoo Staff Engineer, Sun Microsystems India Pvt. Ltd.
  • 2. 2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. Safe Harbor Statements
  • 3. 3 The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle.
  • 4. 4 <Insert Picture Here> Agenda • OSGi 101 • OSGi meets Java EE – Hybrid Applications • Advanced usecases • Hybrid Application Demo • Q & A
  • 5. 5 <Insert Picture Here> Agenda • OSGi 101 • OSGi meets Java EE – Hybrid Applications • Advanced usecases • Hybrid Application Demo • Q & A
  • 8. 8 Module Layer • Bundle – a unit of modularity in OSGi • Encapsulation • Lifecycle independent of the JVM • Versionable • Packaged as a JAR (classes + Manifest with OSGi metadata) • Very explicit dependency specification • Well defined dependency resolution rules
  • 9. 9 Bundle-SymbolicName: com.acme.hello.startup Bundle-Name: Hello World OSGi Sample Bundle-Version: 1.0.1 Bundle-ManifestVersion: 2 Bundle-Activator: com.acme.hello.startup.MyActivator Export-Package: com.acme.hello.startup;version=1.0.0 Import-Package: org.osgi.framework;version=1.3 OSGi Metadata
  • 10. 10 Classloading in OSGi Image from the OSGi R4 Core Specification
  • 11. 11 Lifecycle Layer • Provides an API to manage bundles – BundleContext.install – BundleContext.uninstall – Bundle.update • BundleActivator • BundleListener – listen to BundleEvents – Synchronous – Asynchronous
  • 12. 12 Bundle Lifecycle Image from the OSGi R4 Core Specification
  • 13. 13 Service Layer • In-VM SOA • Service Registry – Register – Unregister • Service is a POJO • Service Dynamism – Service tracking • Service Discovery – LDAP filter based queries
  • 14. 14 Interactions between OSGi Layers Image from the OSGi R4 Core Specification
  • 15. 15 OSGi benefits – a recap • Layered approach • Modularity – Enforces modularity – Ensures class-space consistency – Enables component reuse – Supports versioning and evolution • Dynamism – Bundles – Services • Ease of deployment and management – OBR • Bundle deployment order is not relevant – Faster deployment cycle
  • 17. 17 <Insert Picture Here> Agenda • OSGi 101 • OSGi meets Java EE – Hybrid Applications • Advanced usecases • Hybrid Application Demo • Q & A
  • 18. 18 Java EE Platform of choice for enterprise applications • Widely used APIs (JPA, JTA, JAXB, JNDI) • Component Models (Servlet, EJB, JAX-RS) • Frameworks (JSF, CDI) • Ease of Use (Annotations, Convention over Configuration) • Platform provided infrastructure services (Transaction, Security, Persistence, Remoting) • Tools (IDE, Management, Monitoring) • Ubiquitous deployment platform for enterprise applications
  • 19. 19 Hybrid Applications Meeting of the two worlds • OSGi + Java EE = Hybrid application • Hybrid application – An OSGi bundle – And a Java EE Archive • Leverage the capabilities of both the platforms – Enterprise applications can now • be built as modular OSGi bundles • use OBR, Config Admin, service tracking, etc. – OSGi bundles can now use Java EE services like JTA, JPA, etc.
  • 20. 20 Current State • OSGi Enterprise Expert Group (EEG) – Relased OSGi Service Platform Enterprise Specification 4.2 in 2010 • Open source efforts – Project GlassFish – Project Aries – Eclipse Gemini
  • 21. 21 OSGi/Web Application (WAB) • Web Application Bundle (WAB) – WAR + OSGi metadata + Web-ContextPath header • Can use all enterprise APIs (like JPA, JTA) • Wrapped WAR support – webbundle: URL scheme
  • 22. 22 Bundle-SymbolicName: com.acme.hellowab Bundle-Name: Hello World OSGi Web Application Bundle-Version: 1.0.0 Bundle-ManifestVersion: 2 Bundle-Activator: com.acme.hellowab.MyActivator Import-Package: javax.servlet; javax.servlet.http; version=3.0, org.osgi.framework; version=1.5 Bundle-ClassPath: WEB-INF/classes, WEB-INF/lib/foo.jar Web-ContextPath: /hello OSGi Metadata of a WAB
  • 24. 24 Enterprise OSGi Specifications • OSGi/Web Application • OSGi/JPA • OSGi/JDBC • OSGi/JTA • OSGi/JNDI • OSGi/HTTP Service • OSGi Blueprint Service
  • 25. 25 EE APIs in OSGi • OSGi/JDBC – JDBC driver as DataSourceFactory – Dynamic discovery of driver details – Multiple versions of same driver • OSGi/JTA – JTA artifacts available as OSGi Services • OSGi/JPA – Enhancement of JPA entities at runtime – Same packaging rules as JPA and also deploy entities as a bundle – Shared Persistence Unit and thereby shared second level cache
  • 26. 26 Tools • BND (http://www.aqute.biz/Code/Bnd) – de-facto tool for OSGi metadata generation – maven-bundle-plugin – Ant task • IDE – Eclipse – NetBeans – IntelliJ IDEA
  • 28. 28 <Insert Picture Here> Agenda • OSGi 101 • OSGi meets Java EE – Hybrid Applications • Advanced usecases • Hybrid Application Demo • Q & A
  • 29. 29 OSGi/EJB Application • Allows you to develop managed, transactional, secure OSGi services with very little knowledge of OSGi • Make your existing EJB service available to OSGi clients with little effort • Achieved through simple manifest metadata – Export-EJB: ALL/None/<names of stateless local EJB>
  • 30. 30 Bundle-SymbolicName: com.acme.helloEjbOsgi Bundle-Name: Hello World OSGi EJB Bundle Bundle-Version: 1.0.0 Bundle-ManifestVersion: 2 Import-Package: javax.ejb; version=3.0, Export-EJB: ALL OSGi Metadata of an OSGi/EJB bundle
  • 31. 31 CDI • Brings type-safe dependency injection to EE platform – Strong typing and loose coupling • Well defined life cycle of stateful objects bound to life cycle contexts • Ability to decorate and intercept injected Beans • An event notification model • An ability to develop portable extensions that integrates with the container to extend the runtime
  • 32. 32 GlassFish CDI/OSGi Portable Extension • Use of CDI for type safe injection of OSGi services @WebServlet(urlPatterns = “/login”) public class FooServlet implements HttpServlet {     @Inject      @org.glassfish.osgicdi.OSGiService(           dynamic=”true”,            timeout = 200,            serviceCriteria=<an ldap query >)     FooService foo; }
  • 34. 34 Demo schematic • WAB • JPA- LAZY loading • EJB as Service • OSGi Service Injection • OBR • Security/Transaction Context propagation Simple OSGi Bundle OSGi Service Simple OSGi Service EJB OSGi Service Advanced WAB Simple WAB
  • 35. 35 Call To Action • Want to build hybrid applications? – Try our tutorial at http://tinyurl.com/osgieehol • Want to try out? – Use GlassFish 3.1 trunk builds from http://glassfish.org • Questions? – users@glassfish.dev.java.net
  • 36. 36 References • OSGi Service Platform Core and Enterprise Specification 4.2 – http://www.osgi.org • Project GlassFish – http://glassfish.org • Hybrid application samples – http://wikis.sun.com/display/GlassFish/BlogsGfOsgi
  • 37. 37 <Insert Picture Here> Agenda • OSGi 101 • OSGi meets Java EE – Hybrid Applications • Advanced usecases • Hybrid Application Demo • Q & A
  • 38. 38 <Insert Picture Here> OSGi and Java EE: A Hybrid Approach to Enterprise Java Application Development Sanjeeb Sahoo Staff Engineer, Sun Microsystems India Pvt. Ltd.