SlideShare a Scribd company logo
Apache TomEE Tomcat with a kick About  Apache TomEE David Blevins  Jonathan Gallimore dblevins@apache.org  [email_address] @dblevins  @jongallimore * Original Slides modified a little to make the document self-contained
In this presentation we will introduce and demonstrate Apache TomEE… And show how you can leverage all the additional features available in the JavaEE 6 platform, without having to move away from Tomcat. Intro Welcome to Apache TomEE  –  Tomcat with a kick.
The slides are from Jonathan Gallimore and David Belvins’ presentation @JAX London, Spring 2011. You can watch the video  here Meta
So, what is Apache TomEE? In short, its a stack that's assembled and maintained by the Apache OpenEJB project. TomEE aims to provide a fully certified Java EE 6 Web profile stack based on Tomcat, allowing you to use Java EE features in your lightweight Tomcat applications. Talk
Apache TomEE: Overview Java EE 6 Web Profile certification in progress Apache TomEE Includes support for: Servlet 3.0 (Apache Tomcat) JPA 2.0 (Apache OpenJPA) JSF 2.0 (Apache MyFaces) CDI 1.0 (Apache OpenWebBeans) EJB 3.1 (Apache OpenEJB) JMS (Apache ActiveMQ) Webservices (Apache CXF)
Although TomEE is assembled by the OpenEJB team, its based on a number of different Apache projects shown on the previous slide.  You may be familiar with or using some of these projects already. Even if you're not using EJBs in your projects, Apache TomEE still provides a range of functionality you may find useful. Side-note
Apache TomEE: Philosophy Preserve Tomcat  Leverage Tomcat JNDI, Security, everything Get more, don't give up anything Add the extras without removing anything Lightweight Just 38MB zip Runs with no extra memory requirements No need to learn new server environment Existing IDE tools for Tomcat should also work with TomEE
Obviously there are a number of different Java EE servers available today, and a number of open source offerings.  How is TomEE different from other implementations? Well, we take a different approach to building the server – many implementations will use Tomcat to provide a servlet features, and will strip it down and embed it in their own server. TomEE does the opposite – OpenEJB and all the other components are  embedded into Tomcat , and  nothing is taken away. Talk ..Contd in next slide Question
This offers a number of advantages: Firstly, TomEE is able to leverage all the functionality that Tomcat provides, such as JNDI and security. Secondly, TomEE is still lightweight – the zip is around 37MB, and does not have any additional memory requirements over Tomcat to run. Finally, the environment will be completely familiar to existing Tomcat users, meaning that your existing tooling should still work. For example, there isn't a TomEE Eclipse plugin or Netbeans plugin – the existing out-of-the-box plugins for Tomcat 7 also work with TomEE. Talk So what do we get ?
Apache TomEE: History Predates Java EE 6 Web Profile Integration approach inspired by OpenEJB's  embeddable nature Previously known as OpenEJB-Tomcat  integration Also available as a drop-in-war for Tomcat 5.5 -  7.0 Origin of EE 6 " EJBs in .wars " feature
Although we're introducing Apache TomEE as a new bundle, it has actually been around for a while, first making an appearance in 2006, and was inspired by OpenEJB's embeddable nature. Previously it has been known as the “OpenEJB-Tomcat integration”, and was (and still is) available as a drop-in .war file for any version of Tomcat back to 5.5. In addition to the  drop-in .war , TomEE is now available as a  pre-built bundle  which requires no installation or configuration. Also worth mentioning, Apache TomEE is actually the origin of the “ EJBs in war files ” that is new in the JavaEE 6 specification. David, our PMC chair, participates in the JCP that provides the EJB specification and has done since EJB 2.1. Talk
Apache TomEE: Getting started Very simple installation: Obtain bundle  and unzip OR Deploy  openejb.war  into an existing Tomcat installation  and run through a simple wizard Sample application included in bundle Additional lib folder in $CATALINA_BASE/webapps/openejb/lib Dashboard available at http://localhost:8080/openejb
-  bin  – untouched, shell scripts have the usual options -  conf  – server.xml is the same, one extra listener. Can configure ports, hosts, engines, threadpools etc in here. Extra file  openejb.xml   – this is where most TomEE configuration happens – this is where global resources are defined. Tomcat-users.xml – we use Tomcat security. -  logs  – untouched – extra file openejb.log ends up in here, useful for troubleshooting (rarely, we hope!) -  webapps  – works the same way as it does for Tomcat. Drop your directories/wars in here! Also supports EAR files too. … contd in next slide A peek Apache TomEE: Folder Structure
Set of Tomcat apps, plus two extras: Ejb-examples  – sample application from OpenEJB repository. Simple example showing a few JavaEE features – not very functional, but useful for testing. OpenEJB  – where the magic happens. Note extra lib directory, some jars can be swapped out. Provides a dashboard to test the setup and examine the JNDI tree. A peek Apache TomEE: Folder Structure
Apache TomEE: Moviefun example Movie fun sample – available from OpenEJB SVN repository:  http://svn.apache.org/repos/asf/openejb/trunk/openejb3/examples/webapps/moviefun/ Or at github https://github.com/apache/openejb/tree/trunk/openejb3/examples/webapps/moviefun Simple example demonstrating: Servlet  @EJB injection Bean lookup  from a JSP Dependency injection with  JSF ManagedBean Persistence  with JPA 2 Notifications  via JMS Webservice  support Stateless EJB with no-interface view Samples
One thing that might have struck you during the demo, is that we unzipped TomEE, deployed and used a database-based web application, all without doing any configuration at all – not even specifying a database to use. TomEE will use  some default resources specified in conf/openejb.xml , including HSQLDB as a default datasource, which is why we didn't need to configure a database for the moviefun example. This is great for development, but  you might want to use a different database in production , for example, MySQL. To do this we just need to add the MySQL  connector jar to the Tomcat/lib folder, and add a datasource resource for the persistence context. Side-note
The openejb.xml file is very easy to  configure . Its an XML/properties format. The xml tags match the annotations you'd use for dependency inject (for example @Resource) and type matches the simple name of the object type. Side-note
Apache TomEE: Configuration Resources configured in $CATALINA_BASE/conf/openejb.xml Simple XML + properties format Tags match Annotation names «Resource id="moviesDatabase" type="DataSource"» @Resource DataSource moviesDatabase Drop drivers in tomcat.home/lib
ApacheTomEE: Security Uses Tomcat's Security Realm Extra TomEE layer adds support for JAAS JACC WS Security Supports any org.apache.catalina.Realm implementation E.g. add users to $CATALINA_BASE/conf/tomcat-users.xml Alternatively use login.config to provide your own security module
Rather than providing its own security implementation, TomEE makes full use of the security features that are part of Tomcat. Any Catalina realm is supported or you can provide your own security module using the login.config file. Talk ApacheTomEE: Security
For example, to add some simple security to the moviefun application, all we would need to do is: 1. Add some users to the tomcat-users.xml file 2. Add the necessary @DefineRoles and @RolesAllowed annotations on MoviesImpl 3. Add some security config to do HTTP Basic authentication to web.xml Webservice security is also looked after – username/password based security (HTTP basic, or WS-Security) uses the same Tomcat security. Certificate based security is also available. Samples are available to demonstrate this. Talk ApacheTomEE: Security
Apache TomEE: JPA All persistence.xml files found and deployed Connection persistence.xml values filled in automatically jta-data-source non-jta-data-source Servlets, ManagedBeans, Session Beans, etc now use @PersistenceUnit EntityManagerFactory emf; @PersistenceContext EntityManager em; OpenJPA included, easy to remove Hibernate used in many Apache TomEE installs EclipseLink also works
By default, persistence in TomEE is taken care of by Apache OpenJPA. TomEE will deploy any persistence.xml files automatically. As well session EJBs, persistence units can also be injected into servlets and managed beans as well. Other JPA providers can also be used in TomEE, hibernate is particularly popular. Side-note
Apache TomEE: Transactions Connection pooling is Transaction aware Everyone in same transaction, shares same connection Servlets, ManagedBeans, etc. can start transactions @Resource UserTransaction transaction; No need for EJBs to use transactions
TomEE provides transaction support. Even if you aren't using EJBs, simply inject an  UserTransaction @Resource  into your servlets or MangedBeans. What’s cool ? Apache TomEE: Transactions
Apache TomEE: JMS Resources configured  in $CATALINA_BASE/conf/openejb.xml (Connection Factory, Topics, Queues) By default ActiveMQ listens for connections on port 61616 Resources can be injected into Servlets etc via @Resource ConnectionFactory connectionFactory; @Resource Queue queue; @Resource Topic topic; Example functionality in the Moviefun / monitor  example
Apache TomEE: Web Services Use @Webservice on either POJO Session Bean CXF & Web Service plumbing happens automatically Accessible via: http://localhost:8080/Movies?wsdl Web Service Security supported Web Service Clients also work @WebServiceRef CalculatorWs service; Sample webservice client: get-movies.pl and delete-movie.pl
Apache TomEE: EJB Client HTTP can be used for EJB remote communication (http://localhost:8080/openejb/ejb) Great for firewalled systems User/Pass supplied with InitialContext params HTTP or HTTPS … Contd in next slide
EJBs deployed in TomEE can also be accessed remotely using an EJB client. One nice feature of this is that TomEE uses HTTP/HTTPS as the protocol, so your rich applications can connect directly to EJBs without needing other firewall ports to be opened up. As long as you include the openejb-client jar in your client application, nothing else is needed. If you need to secure your EJBs, you can pass a username and password in the InitialContext properties. Sample (client) code below: Talk Apache TomEE: EJB Client
Apache TomEE: Functional Testing T7MP  Maven plugin can use TomEE as a server Run your application embedded in your Maven build Provides an isolated environment Very useful for functional tests, combined with HtmlUnit or Selenium Example integration test in the moviefun project
Finally – if you're into functional testing, I wanted to demonstrate a technique I have used. OpenEJB's embeddable nature makes it great for testing EJBs in a junit test.  You can take this one step further and use Apache TomEE with the Maven T7MP plugin. This allows you to start a TomEE instance (well, Tomcat 7 with the OpenEJB war) for your test run.  Combined with an in-memory database and something like Selenium or HtmlUnit, you can run your application completely embedded within your Maven build, allowing you to run your tests completely in isolation of your development environment. This technique can be useful in providing a consistent environment for tests, and not having to worry about different setups between developer machines. Talk
Thanks! OpenEJB Home Apache TomEE Getting Involved: Users mailing list Dev mailing list Follow us on  Facebook  /  Twitter   Check the next slides for Web Profile Cert status
Web Profile Certification Status We can't say (that’s the law) Work being done on Amazon EC2, using T1.Micro Linux images, lots of them 100 going at once! Each has 613MB memory max Though we still run with default memory options (64MB) It's quick! Will be Cloud certified! Wish we could show you the setup (sorry, also the rules)
I previously mentioned that Apache TomEE is aiming to be a certified web profile implementation. Work on the certification process is underway. Unfortunately we can't say what the status of the work is at the moment, as its subject to a non-disclosure agreement. We do have an interesting setup to run  the TCK tests against TomEE , using lots of instances on the Amazon EC2 cloud. Again, unfortunately, we can't show you the setup, which is a shame, as it allows us to run the necessary tests very quickly, giving us fast feedback. Talk
Thanks !

More Related Content

What's hot (20)

PDF
Dockercon State of the Art in Microservices
Adrian Cockcroft
 
PPT
Selenium Architecture
rohitnayak
 
PPTX
Simple Object Access Protocol
Saatviga Sudhahar
 
PDF
What Is Spring Framework In Java | Spring Framework Tutorial For Beginners Wi...
Edureka!
 
PPTX
JSP- JAVA SERVER PAGES
Yoga Raja
 
PDF
UI Testing Automation
AgileEngine
 
PDF
Web automation using selenium.ppt
Ana Sarbescu
 
PPTX
Expo - Zero to App.pptx
😎 Anthony Kariuki
 
PPTX
SEMAT Initiative - Essence Introduction
Marvin Ferreira
 
PPT
Tomcat Server
Anirban Majumdar
 
PDF
e2e testing with cypress
Tomasz Bak
 
PPTX
Laravel overview
Obinna Akunne
 
PPT
Jenkins Overview
Ahmed M. Gomaa
 
PDF
Swagger UI
Walaa Hamdy Assy
 
ODP
An Introduction to Windows PowerShell
Dale Lane
 
PDF
Microservice Architecture
tyrantbrian
 
PPTX
Async API and Solace: Enabling the Event-Driven Future
Solace
 
PPTX
Cypress for Testing
PoojaSingh1123
 
PDF
SRE & Kubernetes
Afkham Azeez
 
PDF
[Spring Camp 2018] 11번가 Spring Cloud 기반 MSA로의 전환 : 지난 1년간의 이야기
YongSung Yoon
 
Dockercon State of the Art in Microservices
Adrian Cockcroft
 
Selenium Architecture
rohitnayak
 
Simple Object Access Protocol
Saatviga Sudhahar
 
What Is Spring Framework In Java | Spring Framework Tutorial For Beginners Wi...
Edureka!
 
JSP- JAVA SERVER PAGES
Yoga Raja
 
UI Testing Automation
AgileEngine
 
Web automation using selenium.ppt
Ana Sarbescu
 
Expo - Zero to App.pptx
😎 Anthony Kariuki
 
SEMAT Initiative - Essence Introduction
Marvin Ferreira
 
Tomcat Server
Anirban Majumdar
 
e2e testing with cypress
Tomasz Bak
 
Laravel overview
Obinna Akunne
 
Jenkins Overview
Ahmed M. Gomaa
 
Swagger UI
Walaa Hamdy Assy
 
An Introduction to Windows PowerShell
Dale Lane
 
Microservice Architecture
tyrantbrian
 
Async API and Solace: Enabling the Event-Driven Future
Solace
 
Cypress for Testing
PoojaSingh1123
 
SRE & Kubernetes
Afkham Azeez
 
[Spring Camp 2018] 11번가 Spring Cloud 기반 MSA로의 전환 : 지난 1년간의 이야기
YongSung Yoon
 

Viewers also liked (20)

PDF
Introduction to Apache Tomcat 7 Presentation
Tomcat Expert
 
PPTX
Apache tomcat
Shashwat Shriparv
 
PDF
Automated Tomcat Management
seges
 
PDF
Ansible
Jasim Muhammed
 
PPTX
Mule management console installation with Tomcat
Sudha Ch
 
PDF
Tomcat
abbadon1989
 
PDF
Java ee com apache tom ee e tomee+ tdc - 2014
Daniel Cunha
 
PDF
Apache Tomcat + Java EE = Apache TomEE
Jacek Laskowski
 
PDF
Instalación de Apache Tomcat 8
pablozacrosuarez
 
PPT
Tomcat Clustering
gouthamrv
 
PDF
Apache TomEE, Java EE 6 Web Profile {and more} on Tomcat
Tomitribe
 
PPTX
Git tutorial
Pham Quy (Jack)
 
PPTX
Tomcat session clustering
jgjhf lhhjfhdg
 
PPTX
Web service introduction 2
Sagara Gunathunga
 
PDF
Tomcat next
Jean-Frederic Clere
 
PDF
Apache Tomcat 8 Application Server
mohamedmoharam
 
PPT
APACHE TOMCAT
Rachid NID SAID
 
PPT
Tomcat Configuration (1)
nazeer pasha
 
PDF
Tomcat and apache httpd training
Franck SIMON
 
PDF
Tomcat y Java EE con TomEE {y mucho más}
Alex Soto
 
Introduction to Apache Tomcat 7 Presentation
Tomcat Expert
 
Apache tomcat
Shashwat Shriparv
 
Automated Tomcat Management
seges
 
Mule management console installation with Tomcat
Sudha Ch
 
Tomcat
abbadon1989
 
Java ee com apache tom ee e tomee+ tdc - 2014
Daniel Cunha
 
Apache Tomcat + Java EE = Apache TomEE
Jacek Laskowski
 
Instalación de Apache Tomcat 8
pablozacrosuarez
 
Tomcat Clustering
gouthamrv
 
Apache TomEE, Java EE 6 Web Profile {and more} on Tomcat
Tomitribe
 
Git tutorial
Pham Quy (Jack)
 
Tomcat session clustering
jgjhf lhhjfhdg
 
Web service introduction 2
Sagara Gunathunga
 
Tomcat next
Jean-Frederic Clere
 
Apache Tomcat 8 Application Server
mohamedmoharam
 
APACHE TOMCAT
Rachid NID SAID
 
Tomcat Configuration (1)
nazeer pasha
 
Tomcat and apache httpd training
Franck SIMON
 
Tomcat y Java EE con TomEE {y mucho más}
Alex Soto
 
Ad

Similar to Apache TomEE - Tomcat with a kick (20)

PDF
Pp w tomee
Felix Gomez del Alamo
 
PDF
Mc sl54 051_ (1)
AnkitKumar2343
 
DOCX
Integrating tomcat with apache
govindraj8787
 
PPT
Tumbleweed intro
Rich Helton
 
PDF
Tomcat Maven Plugin
Olivier Lamy
 
PPT
Web Applications and Deployment
BG Java EE Course
 
PDF
BP107: Ten Lines Or Less: Interesting Things You Can Do In Java With Minimal ...
panagenda
 
PDF
10 Lines or Less; Interesting Things You Can Do In Java With Minimal Code
Kathy Brown
 
PPT
Java Servlets
Nitin Pai
 
PPT
GTLAB Overview
marpierc
 
PPTX
Information on Tomcat in cPanel & WHM
HTS Hosting
 
PDF
01 web-apps
Aravindharamanan S
 
PDF
01 web-apps
snopteck
 
ODP
Tc Server Glance Over
Iwein Fuld
 
PPT
Web Server/App Server Connectivity
webhostingguy
 
PPT
Java7
Dinesh Guntha
 
PPT
Hacking Tomcat
guestc27cd9
 
PPT
Hackingtomcat
Aung Khant
 
PPTX
AtoM's Command Line Tasks - An Introduction
Artefactual Systems - AtoM
 
PDF
Learning puppet chapter 3
Vishal Biyani
 
Mc sl54 051_ (1)
AnkitKumar2343
 
Integrating tomcat with apache
govindraj8787
 
Tumbleweed intro
Rich Helton
 
Tomcat Maven Plugin
Olivier Lamy
 
Web Applications and Deployment
BG Java EE Course
 
BP107: Ten Lines Or Less: Interesting Things You Can Do In Java With Minimal ...
panagenda
 
10 Lines or Less; Interesting Things You Can Do In Java With Minimal Code
Kathy Brown
 
Java Servlets
Nitin Pai
 
GTLAB Overview
marpierc
 
Information on Tomcat in cPanel & WHM
HTS Hosting
 
01 web-apps
Aravindharamanan S
 
01 web-apps
snopteck
 
Tc Server Glance Over
Iwein Fuld
 
Web Server/App Server Connectivity
webhostingguy
 
Hacking Tomcat
guestc27cd9
 
Hackingtomcat
Aung Khant
 
AtoM's Command Line Tasks - An Introduction
Artefactual Systems - AtoM
 
Learning puppet chapter 3
Vishal Biyani
 
Ad

Recently uploaded (20)

PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
Python basic programing language for automation
DanialHabibi2
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
PPT
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Python basic programing language for automation
DanialHabibi2
 
July Patch Tuesday
Ivanti
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 

Apache TomEE - Tomcat with a kick

  • 1. Apache TomEE Tomcat with a kick About Apache TomEE David Blevins Jonathan Gallimore [email protected] [email_address] @dblevins @jongallimore * Original Slides modified a little to make the document self-contained
  • 2. In this presentation we will introduce and demonstrate Apache TomEE… And show how you can leverage all the additional features available in the JavaEE 6 platform, without having to move away from Tomcat. Intro Welcome to Apache TomEE – Tomcat with a kick.
  • 3. The slides are from Jonathan Gallimore and David Belvins’ presentation @JAX London, Spring 2011. You can watch the video here Meta
  • 4. So, what is Apache TomEE? In short, its a stack that's assembled and maintained by the Apache OpenEJB project. TomEE aims to provide a fully certified Java EE 6 Web profile stack based on Tomcat, allowing you to use Java EE features in your lightweight Tomcat applications. Talk
  • 5. Apache TomEE: Overview Java EE 6 Web Profile certification in progress Apache TomEE Includes support for: Servlet 3.0 (Apache Tomcat) JPA 2.0 (Apache OpenJPA) JSF 2.0 (Apache MyFaces) CDI 1.0 (Apache OpenWebBeans) EJB 3.1 (Apache OpenEJB) JMS (Apache ActiveMQ) Webservices (Apache CXF)
  • 6. Although TomEE is assembled by the OpenEJB team, its based on a number of different Apache projects shown on the previous slide. You may be familiar with or using some of these projects already. Even if you're not using EJBs in your projects, Apache TomEE still provides a range of functionality you may find useful. Side-note
  • 7. Apache TomEE: Philosophy Preserve Tomcat  Leverage Tomcat JNDI, Security, everything Get more, don't give up anything Add the extras without removing anything Lightweight Just 38MB zip Runs with no extra memory requirements No need to learn new server environment Existing IDE tools for Tomcat should also work with TomEE
  • 8. Obviously there are a number of different Java EE servers available today, and a number of open source offerings. How is TomEE different from other implementations? Well, we take a different approach to building the server – many implementations will use Tomcat to provide a servlet features, and will strip it down and embed it in their own server. TomEE does the opposite – OpenEJB and all the other components are embedded into Tomcat , and nothing is taken away. Talk ..Contd in next slide Question
  • 9. This offers a number of advantages: Firstly, TomEE is able to leverage all the functionality that Tomcat provides, such as JNDI and security. Secondly, TomEE is still lightweight – the zip is around 37MB, and does not have any additional memory requirements over Tomcat to run. Finally, the environment will be completely familiar to existing Tomcat users, meaning that your existing tooling should still work. For example, there isn't a TomEE Eclipse plugin or Netbeans plugin – the existing out-of-the-box plugins for Tomcat 7 also work with TomEE. Talk So what do we get ?
  • 10. Apache TomEE: History Predates Java EE 6 Web Profile Integration approach inspired by OpenEJB's embeddable nature Previously known as OpenEJB-Tomcat integration Also available as a drop-in-war for Tomcat 5.5 - 7.0 Origin of EE 6 " EJBs in .wars " feature
  • 11. Although we're introducing Apache TomEE as a new bundle, it has actually been around for a while, first making an appearance in 2006, and was inspired by OpenEJB's embeddable nature. Previously it has been known as the “OpenEJB-Tomcat integration”, and was (and still is) available as a drop-in .war file for any version of Tomcat back to 5.5. In addition to the drop-in .war , TomEE is now available as a pre-built bundle which requires no installation or configuration. Also worth mentioning, Apache TomEE is actually the origin of the “ EJBs in war files ” that is new in the JavaEE 6 specification. David, our PMC chair, participates in the JCP that provides the EJB specification and has done since EJB 2.1. Talk
  • 12. Apache TomEE: Getting started Very simple installation: Obtain bundle and unzip OR Deploy openejb.war into an existing Tomcat installation and run through a simple wizard Sample application included in bundle Additional lib folder in $CATALINA_BASE/webapps/openejb/lib Dashboard available at http://localhost:8080/openejb
  • 13. - bin – untouched, shell scripts have the usual options - conf – server.xml is the same, one extra listener. Can configure ports, hosts, engines, threadpools etc in here. Extra file openejb.xml – this is where most TomEE configuration happens – this is where global resources are defined. Tomcat-users.xml – we use Tomcat security. - logs – untouched – extra file openejb.log ends up in here, useful for troubleshooting (rarely, we hope!) - webapps – works the same way as it does for Tomcat. Drop your directories/wars in here! Also supports EAR files too. … contd in next slide A peek Apache TomEE: Folder Structure
  • 14. Set of Tomcat apps, plus two extras: Ejb-examples – sample application from OpenEJB repository. Simple example showing a few JavaEE features – not very functional, but useful for testing. OpenEJB – where the magic happens. Note extra lib directory, some jars can be swapped out. Provides a dashboard to test the setup and examine the JNDI tree. A peek Apache TomEE: Folder Structure
  • 15. Apache TomEE: Moviefun example Movie fun sample – available from OpenEJB SVN repository:  http://svn.apache.org/repos/asf/openejb/trunk/openejb3/examples/webapps/moviefun/ Or at github https://github.com/apache/openejb/tree/trunk/openejb3/examples/webapps/moviefun Simple example demonstrating: Servlet @EJB injection Bean lookup from a JSP Dependency injection with JSF ManagedBean Persistence with JPA 2 Notifications via JMS Webservice support Stateless EJB with no-interface view Samples
  • 16. One thing that might have struck you during the demo, is that we unzipped TomEE, deployed and used a database-based web application, all without doing any configuration at all – not even specifying a database to use. TomEE will use some default resources specified in conf/openejb.xml , including HSQLDB as a default datasource, which is why we didn't need to configure a database for the moviefun example. This is great for development, but you might want to use a different database in production , for example, MySQL. To do this we just need to add the MySQL connector jar to the Tomcat/lib folder, and add a datasource resource for the persistence context. Side-note
  • 17. The openejb.xml file is very easy to configure . Its an XML/properties format. The xml tags match the annotations you'd use for dependency inject (for example @Resource) and type matches the simple name of the object type. Side-note
  • 18. Apache TomEE: Configuration Resources configured in $CATALINA_BASE/conf/openejb.xml Simple XML + properties format Tags match Annotation names «Resource id="moviesDatabase" type="DataSource"» @Resource DataSource moviesDatabase Drop drivers in tomcat.home/lib
  • 19. ApacheTomEE: Security Uses Tomcat's Security Realm Extra TomEE layer adds support for JAAS JACC WS Security Supports any org.apache.catalina.Realm implementation E.g. add users to $CATALINA_BASE/conf/tomcat-users.xml Alternatively use login.config to provide your own security module
  • 20. Rather than providing its own security implementation, TomEE makes full use of the security features that are part of Tomcat. Any Catalina realm is supported or you can provide your own security module using the login.config file. Talk ApacheTomEE: Security
  • 21. For example, to add some simple security to the moviefun application, all we would need to do is: 1. Add some users to the tomcat-users.xml file 2. Add the necessary @DefineRoles and @RolesAllowed annotations on MoviesImpl 3. Add some security config to do HTTP Basic authentication to web.xml Webservice security is also looked after – username/password based security (HTTP basic, or WS-Security) uses the same Tomcat security. Certificate based security is also available. Samples are available to demonstrate this. Talk ApacheTomEE: Security
  • 22. Apache TomEE: JPA All persistence.xml files found and deployed Connection persistence.xml values filled in automatically jta-data-source non-jta-data-source Servlets, ManagedBeans, Session Beans, etc now use @PersistenceUnit EntityManagerFactory emf; @PersistenceContext EntityManager em; OpenJPA included, easy to remove Hibernate used in many Apache TomEE installs EclipseLink also works
  • 23. By default, persistence in TomEE is taken care of by Apache OpenJPA. TomEE will deploy any persistence.xml files automatically. As well session EJBs, persistence units can also be injected into servlets and managed beans as well. Other JPA providers can also be used in TomEE, hibernate is particularly popular. Side-note
  • 24. Apache TomEE: Transactions Connection pooling is Transaction aware Everyone in same transaction, shares same connection Servlets, ManagedBeans, etc. can start transactions @Resource UserTransaction transaction; No need for EJBs to use transactions
  • 25. TomEE provides transaction support. Even if you aren't using EJBs, simply inject an UserTransaction @Resource into your servlets or MangedBeans. What’s cool ? Apache TomEE: Transactions
  • 26. Apache TomEE: JMS Resources configured in $CATALINA_BASE/conf/openejb.xml (Connection Factory, Topics, Queues) By default ActiveMQ listens for connections on port 61616 Resources can be injected into Servlets etc via @Resource ConnectionFactory connectionFactory; @Resource Queue queue; @Resource Topic topic; Example functionality in the Moviefun / monitor example
  • 27. Apache TomEE: Web Services Use @Webservice on either POJO Session Bean CXF & Web Service plumbing happens automatically Accessible via: http://localhost:8080/Movies?wsdl Web Service Security supported Web Service Clients also work @WebServiceRef CalculatorWs service; Sample webservice client: get-movies.pl and delete-movie.pl
  • 28. Apache TomEE: EJB Client HTTP can be used for EJB remote communication (http://localhost:8080/openejb/ejb) Great for firewalled systems User/Pass supplied with InitialContext params HTTP or HTTPS … Contd in next slide
  • 29. EJBs deployed in TomEE can also be accessed remotely using an EJB client. One nice feature of this is that TomEE uses HTTP/HTTPS as the protocol, so your rich applications can connect directly to EJBs without needing other firewall ports to be opened up. As long as you include the openejb-client jar in your client application, nothing else is needed. If you need to secure your EJBs, you can pass a username and password in the InitialContext properties. Sample (client) code below: Talk Apache TomEE: EJB Client
  • 30. Apache TomEE: Functional Testing T7MP Maven plugin can use TomEE as a server Run your application embedded in your Maven build Provides an isolated environment Very useful for functional tests, combined with HtmlUnit or Selenium Example integration test in the moviefun project
  • 31. Finally – if you're into functional testing, I wanted to demonstrate a technique I have used. OpenEJB's embeddable nature makes it great for testing EJBs in a junit test. You can take this one step further and use Apache TomEE with the Maven T7MP plugin. This allows you to start a TomEE instance (well, Tomcat 7 with the OpenEJB war) for your test run. Combined with an in-memory database and something like Selenium or HtmlUnit, you can run your application completely embedded within your Maven build, allowing you to run your tests completely in isolation of your development environment. This technique can be useful in providing a consistent environment for tests, and not having to worry about different setups between developer machines. Talk
  • 32. Thanks! OpenEJB Home Apache TomEE Getting Involved: Users mailing list Dev mailing list Follow us on Facebook / Twitter Check the next slides for Web Profile Cert status
  • 33. Web Profile Certification Status We can't say (that’s the law) Work being done on Amazon EC2, using T1.Micro Linux images, lots of them 100 going at once! Each has 613MB memory max Though we still run with default memory options (64MB) It's quick! Will be Cloud certified! Wish we could show you the setup (sorry, also the rules)
  • 34. I previously mentioned that Apache TomEE is aiming to be a certified web profile implementation. Work on the certification process is underway. Unfortunately we can't say what the status of the work is at the moment, as its subject to a non-disclosure agreement. We do have an interesting setup to run the TCK tests against TomEE , using lots of instances on the Amazon EC2 cloud. Again, unfortunately, we can't show you the setup, which is a shame, as it allows us to run the necessary tests very quickly, giving us fast feedback. Talk

Editor's Notes

  • #2: [Quick introduction] http://openejb.apache.org/3.0/apache-tomee.html Welcome to Apache TomEE – Tomcat with a kick. In this presentation we will introduce and demonstrate Apache TomEE, and show how you can leverage all the additional features available in the JavaEE 6 platform, without having to move away from Tomcat. We have got time for questions at the end, but please do feel free to ask any questions as we go along, and we'll do our best to answer them.
  • #6: So, what is Apache TomEE? In short, its a stack that's assembled and maintained by the Apache OpenEJB project. TomEE aims to provide a fully certified Java EE 6 Web profile stack based on Tomcat, allowing you to use Java EE features in your lightweight Tomcat applications. Although TomEE is assembled by the OpenEJB team, its based on a number of different Apache projects shown on the slide. You may be familiar with or using some of these projects already. Even if you're not using EJBs in your projects, Apache TomEE still provides a range of functionality you may find useful.
  • #8: Obviously there are a number of different Java EE servers available today, and a number of open source offerings. How is TomEE different from other implementations? Well, we take a different approach to building the server – many implementations will use Tomcat to provide a servlet features, and will strip it down and embed it in their own server. TomEE does the opposite – OpenEJB and all the other components are embedded into Tomcat, and nothing is taken away. This offers a number of advantages: Firstly, TomEE is able to leverage all the functionality that Tomcat provides, such as JNDI and security. Secondly, TomEE is still lightweight – the zip is around 37MB, and does not have any additional memory requirements over Tomcat to run. Finally, the environment will be completely familiar to existing Tomcat users, meaning that your existing tooling should still work. For example, there isn't a TomEE Eclipse plugin or Netbeans plugin – the existing out-of-the-box plugins for Tomcat 7 also work with TomEE.
  • #11: Although we're introducing Apache TomEE as a new bundle, it has actually been around for a while, first making an appearance in 2006, and was inspired by OpenEJB's embeddable nature. Previously it has been known as the “OpenEJB-Tomcat integration”, and was (and still is) available as a drop-in .war file for any version of Tomcat back to 5.5. In addition to the drop-in .war, TomEE is now available as a pre-built bundle which requires no installation or configuration. Also worth mentioning, Apache TomEE is actually the origin of the “EJBs in war files” that is new in the JavaEE 6 specification. David, our PMC chair, participates in the JCP that provides the EJB specification and has done since EJB 2.1.
  • #13: I'll now demonstrate how easy it is to get started with Apache TomEE, using the pre-built bundle. [Demo] - Unzip - Explain folder structure: - bin – untouched, shell scripts have the usual options - conf – server.xml is the same, one extra listener. Can configure ports, hosts, engines, threadpools etc in here. Extra file openejb.xml – this is where most TomEE configuration happens – this is where global resources are defined. Tomcat-users.xml – we use Tomcat security. - logs – untouched – extra file openejb.log ends up in here, useful for troubleshooting (rarely, we hope!) - webapps – works the same way as it does for Tomcat. Drop your directories/wars in here! Also supports EAR files too. Set of Tomcat apps, plus two extras: Ejb-examples – sample application from OpenEJB repository. Simple example showing a few JavaEE features – not very functional, but useful for testing. OpenEJB – where the magic happens. Note extra lib directory, some jars can be swapped out. Provides a dashboard to test the setup and examine the JNDI tree.
  • #16: Now that we have a TomEE server up and running, I'll show you one of the example applications from OpenEJB, and deploy that to TomEE. The example I'm going to show you is the Moviefun example, and this is available from the subversion repository here. The application itself is very simple – a database of movies, catalogued by title, director, genre and year, and each one having a rating out of ten. It demonstrates a number of Java EE features, such as SL EJB session bean with a no-interface view, persistence with JPA, dependency injection, webservices and JMS. [Code] - Show Movie POJO - SLSB - Annotated servlet - JSF controller [Demo] - Stop existing server - Create WTP server - Configure to use openejb war too - Deploy and start server in debug mode - Show interface, setup db, browse web app. - Show breakpoint
  • #19: One thing that might have struck you during the demo, is that we unzipped TomEE, deployed and used a database-based web application, all without doing any configuration at all – not even specifying a database to use. TomEE will use some default resources specified in conf/openejb.xml, including HSQLDB as a default datasource, which is why we didn't need to configure a database for the moviefun example. This is great for development, but you might want to use a different database in production, for example, MySQL. To do this we just need to add the MySQL connector jar to the Tomcat/lib folder, and add a datasource resource for the persistence context. The file is very easy to edit, its an XML/properties format. The xml tags match the annotations you'd use for dependency inject (for example @Resource) and type matches the simple name of the object type. [Example] Show database configuration in text editor
  • #20: Rather than providing its own security implementation, TomEE makes full use of the security features that are part of Tomcat. Any Catalina realm is supported or you can provide your own security module using the login.config file. For example, to add some simple security to the moviefun application, all we would need to do is: 1. Add some users to the tomcat-users.xml file 2. Add the necessary @DefineRoles and @RolesAllowed annotations on MoviesImpl 3. Add some security config to do HTTP Basic authentication to web.xml Webservice security is also looked after – username/password based security (HTTP basic, or WS-Security) uses the same Tomcat security. Certificate based security is also available. Samples are available to demonstrate this.
  • #23: By default, persistence in TomEE is taken care of by Apache OpenJPA. TomEE will deploy any persistence.xml files automatically. As well session EJBs, persistence units can also be injected into servlets and managed beans as well. Other JPA providers can also be used in TomEE, hibernate is particularly popular.
  • #25: TomEE provides transaction support. Even if you aren't using EJBs, simply inject an UserTransaction @Resource into your servlets or MangedBeans.
  • #27: JMS support is provided by Apache ActiveMQ. Topics and queues can be configured in conf/openejb.xml. These resources will be injected into EJBs / Servlets etc, if you use the @Resource annotation. [Show EJB from moviefun again] JMS topics and queues can be accessed externally by connecting to port 61616. The moviefun example includes a notification application which subscribes to a JMS topic which is notified when a movie is deleted from the database. [Run the notifier] [Delete my least favourite movie ever, Zoolander, from the application. Notice the popup].
  • #28: [2 minutes] Webservice support is provided using Apache CXF. Both POJO and EJB webservices are supported, and is simply a matter of adding the @WebService annotation. [Show EJB again, highlight annotation] The moviefun example includes 2 Perl scripts that connect to the application via the webservice. [Show code and demonstrate] Webservice security is supported, either by requiring HTTP authentication, or WS-Security headers. There are a number of webservice examples available in the OpenEJB svn repository.
  • #29: EJBs deployed in TomEE can also be accessed remotely using an EJB client. One nice feature of this is that TomEE uses HTTP/HTTPS as the protocol, so your rich applications can connect directly to EJBs without needing other firewall ports to be opened up. There's some sample code to do this on the slide. As long as you include the openejb-client jar in your client application, nothing else is needed. If you need to secure your EJBs, you can pass a username and password in the InitialContext properties.
  • #31: Finally – if you're into functional testing, I wanted to demonstrate a technique I have used. OpenEJB's embeddable nature makes it great for testing EJBs in a junit test. You can take this one step further and use Apache TomEE with the Maven T7MP plugin. This allows you to start a TomEE instance (well, Tomcat 7 with the OpenEJB war) for your test run. Combined with an in-memory database and something like Selenium or HtmlUnit, you can run your application completely embedded within your Maven build, allowing you to run your tests completely in isolation of your development environment. This technique can be useful in providing a consistent environment for tests, and not having to worry about different setups between developer machines. [Show POM] [Show integration test]
  • #33: That's the end of the presentation, thanks for joining us, and we hope you have found it useful. We'll try and answer any questions now. Please feel to join us on the mailing lists if you have questions later on, or if you want to participate!
  • #34: I previously mentioned that Apache TomEE is aiming to be a certified web profile implementation. Work on the certification process is underway. Unfortunately we can't say what the status of the work is at the moment, as its subject to a non-disclosure agreement. We do have an interesting setup to run the TCK tests against TomEE, using lots of instances on the Amazon EC2 cloud. Again, unfortunately, we can't show you the setup, which is a shame, as it allows us to run the necessary tests very quickly, giving us fast feedback.