apache tomee - tomcat with a kick

35
Apache TomEE Tomcat with a kick About Apache TomEE David Blevins Jonathan Gallimore [email protected] [email protected] @dblevins @jongallimore l Slides modified a little to make the document self-contained

Upload: vishwanath-krishnamurthi

Post on 09-May-2015

22.688 views

Category:

Technology


12 download

DESCRIPTION

An OpenEJB presentation on "Apache TomEE"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.A stack that's assembled and maintained by the Apache OpenEJB project

TRANSCRIPT

Page 1: Apache TomEE  - Tomcat with a kick

Apache TomEETomcat with a kick

About Apache TomEE

David Blevins Jonathan [email protected] [email protected]@dblevins @jongallimore

* Original Slides modified a little to make the document self-contained

Page 2: 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.

Intro

Welcome to Apache TomEE – Tomcat with a kick.

Page 3: Apache TomEE  - Tomcat with a kick

The slides are fromJonathan Gallimore and David Belvins’ presentation @JAX London, Spring 2011.

You can watch the video here

Meta

Page 4: Apache TomEE  - Tomcat with a kick

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

Page 5: Apache TomEE  - Tomcat with a kick

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)

Page 6: Apache TomEE  - Tomcat with a kick

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

Page 7: Apache TomEE  - Tomcat with a kick

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

Page 8: Apache TomEE  - Tomcat with a kick

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

Page 9: Apache TomEE  - Tomcat with a kick

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 ?

Page 10: Apache TomEE  - Tomcat with a kick

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

Page 11: Apache TomEE  - Tomcat with a kick

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

Page 12: Apache TomEE  - Tomcat with a kick

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

Page 13: Apache TomEE  - Tomcat with a kick

- 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

Page 14: Apache TomEE  - Tomcat with a kick

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

Page 15: Apache TomEE  - Tomcat with a kick

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 githubhttps://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

Page 16: Apache TomEE  - Tomcat with a kick

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

Page 17: Apache TomEE  - Tomcat with a kick

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

Page 18: Apache TomEE  - Tomcat with a kick

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

Page 19: Apache TomEE  - Tomcat with a kick

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

Page 20: Apache TomEE  - Tomcat with a kick

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

Page 21: Apache TomEE  - Tomcat with a kick

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 file2. Add the necessary @DefineRoles and @RolesAllowed annotations on MoviesImpl3. 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

Page 22: Apache TomEE  - Tomcat with a kick

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

Page 23: Apache TomEE  - Tomcat with a kick

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

Page 24: Apache TomEE  - Tomcat with a kick

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

Page 25: Apache TomEE  - Tomcat with a kick

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

Page 26: Apache TomEE  - Tomcat with a kick

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

Page 27: Apache TomEE  - Tomcat with a kick

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

Page 28: Apache TomEE  - Tomcat with a kick

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

Page 29: Apache TomEE  - Tomcat with a kick

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

Page 30: Apache TomEE  - Tomcat with a kick

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

Page 31: Apache TomEE  - Tomcat with a kick

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

Page 32: Apache TomEE  - Tomcat with a kick

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

Page 33: Apache TomEE  - Tomcat with a kick

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)

Page 34: Apache TomEE  - Tomcat with a kick

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

Page 35: Apache TomEE  - Tomcat with a kick

Thanks !