Pack the Old, Deploy as Gold!
This post will guide you to pack your old Java EE application as a container and deploy it to AWS AppRunner.
Vinicius Senger
Amazon Employee
Published Oct 19, 2022
Last Modified May 29, 2024
Java EE is still in production and will likely remain there for a while. I know many companies that run Java EE applications using Apache Tomcat and JBoss, and when they consider migrating to AWS, most of them consider Amazon EC2 first; it's similar to running in your own infrastructure -- kind of a classical lift and shift approach. But thanks to containerization, we have more ways to pack the old Java EE application and deploy as gold containerized apps.
For this tutorial I chose JBoss 4.2.3 as an example, but you can replace it with your choice of a Java EE application server very easily. At the end of this tutorial, you will have a simple Java EE application built with Docker and running with a public URL.
Here are the basic steps we need to do it:
- Download a copy of JBoss 4.2.3
- Create a Simple Java EE Application (or use your existing one!)
- Install Docker
- Create a Dockerfile
- Build and Tag the Docker Image
- Create an Amazon ECR private repository
- Tag and Push Image to ECR
- Create an AWS App Runner Service Using ECR Image URI
... And you'll be done. Now let's build it!
About | |
---|---|
✅ AWS Level | 200 - Intermediate |
⏱ Time to complete | 30 mins - 45 mins |
💰 Cost to complete | USD 1.00 |
🧩 Prerequisites | - An AWS Account (if you don't yet have one, create one and set up your environment) - An IAM user that has the access to create AWS resources. - Basic understanding of Java |
📢 Feedback | Any feedback, issues, or just a 👍 / 👎 ? |
⏰ Last Updated | 2022-10-19 |
I used the version 4.2.3, but you can use any other version -- or even another application server -- with small changes.
You can download JBoss 4.2.3 here.
Create a project directory and unzip JBoss there.
You can use your own application here, but in case you don't have one, let's create a very simple Java EE application. In your project directory, create this:
Create the directories:
Create index.html in
myapp
directory with this simple content:Create the classical web.xml in
myapp/WEB-INF
:Your Java app is done!
Follow the Docker website instructions to download and install it.
We have the JBoss app server and also our simple Java EE app ready, so now we need to create a Dockerfile to describe the commands that will build the image.
Start by creating a file named
javaee.DockerFile
in your project directory with the following code:Now let's explain this file step-by-step:
Our image will be based on a public Amazon Corretto 8 image that will provide us the right SDK to run JBoss:
The following line doesn't have any practical impact, but it can inform the container's services that we need to expose the port number 8080.
Now we are going to copy our JBoss application server inside the container's directory /opt/JBoss:
And we are going to copy our Java EE simple app to the deployment directory:
This is just to help us debug and be sure that our app was included in our image:
This is our container execution entry point where we are starting JBoss and binding
the port to 0.0.0.0:
the port to 0.0.0.0:
Now we are ready to build the image!
To build the image we are going to run a docker command line command with the target platform and docker file. We will also tag this image as
jboss:latest
:Open your AWS Management Console and go to ECR (or Elastic Container Registry). Select "Create Repository".
Type
javaee-app1
as the name of this repository and use default config for other parameters.Now that you can see it listed, select the repository link.
Now select "View push commands".
Now you can copy it into a notes document to use later.
It's all good with ECR, so we can push our image in this private repository!
Retrieve a token to authentic your Docker client to our registry, which is the first command that you copied from the console:
We already built our image previously. Now we just need to tag it:
It's time to push it to Amazon ECR:
The image should be listed in your ECR console like this:
Select the image link to access some required information.
Now that you have URI for your image, copy this information to use in the next step with App Runner.
Log into App Runner console and select "Create new service". Paste the Container image URI:
Choose Automatic deployment and ask it to create as new service role.
Give a name to your service and use default parameters -- or customize it for your workload.
Select "Create & deploy" and your app will soon be ready!
Now we can select the link and access our JBoss Application Server.
You can change your Java EE App and run docker build, tag and push commands to update your App Runner automatically.
Now you have a simple Java EE application built with Docker and running with a public URL! And thanks to containerization, you have more ways to pack your old Java EE application and deploy it as a containerized app.
If you enjoyed this tutorial, found any issues, or have feedback for us, please send it our way!.
Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.