DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Keep Your Application Secrets Secret
  • Auto-Scaling a Spring Boot Native App With Nomad
  • Spring Boot With Kubernetes
  • Develop a Spring Boot REST API in AWS: PART 4 (CodePipeline / CI/CD)

Trending

  • Stop Debugging Glue Jobs Manually: Building an Agentic Observability Layer for Data Pipelines
  • No More Cheap Claude: 4 First Principles of Token Economics in 2026
  • Data Contracts as the "Circuit Breaker" for Model Reliability
  • How SaaS Architectures Break at Scale — and the Engineering Decisions That Prevent It
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. Deploy Spring Boot App to AWS Fargate

Deploy Spring Boot App to AWS Fargate

Learn how Spring Boot lets you create a working application without all the configuration and complexity, with Docker and Travis CI to deploy it.

By 
Raman Sharma user avatar
Raman Sharma
·
May. 30, 18 · Tutorial
Likes (8)
Comment
Save
Tweet
Share
16.7K Views

Join the DZone community and get the full member experience.

Join For Free

Traditionally, Spring applications have a lot of dependencies and require a lot of configuration, which ends up introducing a lot of complexity during development. Spring Boot by Pivotal helps create a fully working application (web app or otherwise) very quickly by providing you intelligent default configurations that you would normally choose to start with. It is the common choice to build microservices in Java.

In November 2017, AWS released ECS backed AWS Fargate, which is the new managed service that allows you to run containers without having to manage servers or clusters. It takes the complexity out of running ECS service.

In this two-part series, we will create a basic Spring Boot application, Dockerize it, and use Travis CI to push the docker image to docker hub. In part 2, we will use the image from docker hub and deploy it to AWS Fargate.

Here are the steps we will cover in this article:

  • Scaffold a Spring Boot application from spring.io.
  • Containerize and push the application to Docker Hub.

The best way to bootstrap a Spring Boot application is by using Spring Initializr. Let’s first start by opening http//start.spring.io.

Image title

Click generate and open this Maven project in IDE of your choice. The package structure should look like this with a few additional items.

Image title

The pom.xml should look like this.

<?xml version="1.0" encoding="UTF-8"?>
<project
	xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.realtime</groupId>
	<artifactId>employeeapp</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>jar</packaging>
	<name>employeeapp</name>
	<description>Demo project for Spring Boot</description>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.0.2.RELEASE</version>
		<relativePath/>
		<!-- lookup parent from repository -->
	</parent>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<java.version>1.8</java.version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>
</project>

To test, you can perform a local build using the maven wrapper with ./mvnw clean install.

After a clean build, we can dockerize the application. If you need help with Docker installation, please visit this link. We will create a Dockerfile, which looks like this:

FROM frolvlad/alpine-oraclejdk8:slim
VOLUME /tmp

ADD ./target/employeeapp-0.0.1-SNAPSHOT.jar  realtime.jar
RUN sh -c 'touch /realtime.jar'
ENV JAVA_OPTS="-Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8787,suspend=n"
EXPOSE 8080
ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -Dspring.profiles.active=docker -jar /realtime.jar" ]

We are making progress …..

Given this, we can build and run the application encapsulated in a Docker container locally:

docker build --file=Dockerfile --tag=realtime:latest.
docker run --publish=8080:8080 realtime:latest

After a successful build and the application running, you can see the results at http://localhost:8080/returnname in the browser or using curl on a command line.

We are going to use Travis-CI for continued Integration. For that, we will need a free account with Travis-CI. This provides excellent integration with GitHub. All you need is to provide a .travis.yml with your code. Travis CI will require you to provide your account details for the docker hub account to publish the docker image. You can also provide these same inside of a .travis.yaml file as Travis secrets.

Image title

The .travis.yml file looks like this.

language: java
sudo: required
jdk: oraclejdk8

services:
- docker

env:
  global:
  - COMMIT=${TRAVIS_COMMIT::7}

cache:
  directories:
    - '$HOME/.m2/repository'

script:
  - ./mvnw clean install -B

after_success:
  - docker login -u $DOCKER_USER -p $DOCKER_PASS
  - export TAG=`if [ "$TRAVIS_BRANCH" == "develop" ]; then echo "latest"; else echo $TRAVIS_BRANCH; fi`
  - export IMAGE_NAME=coolindguy/employeeapp
  - docker build -t $IMAGE_NAME:$COMMIT .
  - docker tag $IMAGE_NAME:$COMMIT $IMAGE_NAME:$TAG
  - docker push $IMAGE_NAME

This YAML script will identify the prerequisites for our environment and build our code using maven wrapper script. After a successful build, the script will login to the Docker hub, create a docker image and push the image to the docker hub repository.

Image title

Please stay tuned for the next article. Meanwhile,  you can clone the complete project for GitHub.

Spring Framework AWS Spring Boot Docker (software) app application Continuous Integration/Deployment

Opinions expressed by DZone contributors are their own.

Related

  • Keep Your Application Secrets Secret
  • Auto-Scaling a Spring Boot Native App With Nomad
  • Spring Boot With Kubernetes
  • Develop a Spring Boot REST API in AWS: PART 4 (CodePipeline / CI/CD)

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook