logo
Menu

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:
  1. Download a copy of JBoss 4.2.3
  2. Create a Simple Java EE Application (or use your existing one!)
  3. Install Docker
  4. Create a Dockerfile
  5. Build and Tag the Docker Image
  6. Create an Amazon ECR private repository
  7. Tag and Push Image to ECR
  8. Create an AWS App Runner Service Using ECR Image URI
... And you'll be done. Now let's build it!
About
✅ AWS Level200 - Intermediate
⏱ Time to complete30 mins - 45 mins
💰 Cost to completeUSD 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
📢 FeedbackAny feedback, issues, or just a 👍 / 👎 ?
⏰ Last Updated2022-10-19

1. Download JBoss

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.

2. Create a Simple Java EE Application

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!

3. Install Docker

Follow the Docker website instructions to download and install it.

4. Create a Dockerfile

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:
Now we are ready to build the image!

5. Build and Tag the Docker 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:

6. Create an ECR Private Repository

Open your AWS Management Console and go to ECR (or Elastic Container Registry). Select "Create Repository".
Instructions to create ECR repository
Type javaee-app1 as the name of this repository and use default config for other parameters.
Instructions for naming the repository
Now that you can see it listed, select the repository link.
Instructions with created repository
Now select "View push commands".
Instructions for viewing push commands
Now you can copy it into a notes document to use later.
Instructions with push commands
It's all good with ECR, so we can push our image in this private repository!

7. Tag and Push Image to ECR

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:
Screen shot with docker push results
Screen shot with docker push results
The image should be listed in your ECR console like this:
Screen shot ECR Console listing the docker image
Screen shot ECR Console listing the docker image
Select the image link to access some required information.
Screen shot with container information
Screen shot with container information
Now that you have URI for your image, copy this information to use in the next step with App Runner.

8. Create an App Runner Service Using ECR Image URI

Log into App Runner console and select "Create new service". Paste the Container image URI:
Screen shot with AWS App Runner console
Screen shot with AWS App Runner console
Choose Automatic deployment and ask it to create as new service role.
Screen shot with AWS App Runner instruction
Screen shot with AWS App Runner instruction
Give a name to your service and use default parameters -- or customize it for your workload.
Screen shot with App Runner console to name your app
Screen shot with App Runner console to name your app
Screen shot with App Runner review and create screen
Screen shot with App Runner review and create screen
Select "Create & deploy" and your app will soon be ready!
Screen shot App Runner create & deploy instruction
Screen shot App Runner create & deploy instruction
Now we can select the link and access our JBoss Application Server.
Screen shot with App Runner deployed app
Screen shot with App Runner deployed app
Screen shot with browser showing your running app
Screen shot with browser showing your running app
You can change your Java EE App and run docker build, tag and push commands to update your App Runner automatically.

Summary

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.

Comments