Microservice Best Practices: Build an Archetype

In this article, we focus on learning why creating proper archetypes is important for a successful microservices architecture.

What You Will Learn

Best Practices With Cloud and Microservices

This is the fifth article in a series of six articles on best practices with cloud and microservices. You can read the first four parts here: 

  1. The 12 Factor App: Best Practices in Cloud Native Applications and Microservices

  2. Microservices Architecture: Even Driven Approach

  3. Microservices Best Practices: Why Do You Build a Vertical Slice? 

  4. Microservices Architecture Best Practices: Messaging Queues

Why Do We Need Archetypes in Microservices?

In microservices architectures, we have a number of microservices interacting with each other. And, we keep adding microservices as we evolve.

A few questions arise:

With microservices architectures, while the functionality of each microservice is different, you want a bit of consistency in how they are built and deployed

This is where the reference architecture for your microservices comes into the picture. Having a good reference architecture ensures that your microservices are uniform.

How do you ensure that the reference architecture is properly implemented?

Enter Archetypes

Creating an archetype standardizes the reference architecture. An archetype is a piece of component code that can create the initial setup of a microservice, adhering to the reference architecture.

What would the output of an archetype look like?

It would consist of an example microservice with:

Once you generate a component using the archetype, you can focus on adding business features to your microservice.

Reference Archetype Example

We have created a reference archetype for a Spring Boot microservice. The GitHub repo for the project is located here.

Using the Archetype to Create a New Project

Steps are detailed below:

Download or Clone the Github Repository

You can start with cloning the repository. Anther option is to download the repository as a zip file using this link: https://github.com/in28minutes/microservice-reference-archetype/archive/master.zip

Install the Archetype

cd to the root of the project and run the following command: 

mvn clean install

This will install the archetype to your local repository. 

[INFO] Installing /in28Minutes/git/microservice-archetype/microservice-archetype/target/project-name-archetype-0.0.2-SNAPSHOT.jar to /Users/rangaraokaranam/.m2/repository/com/organization/project/project-name-archetype/0.0.2-SNAPSHOT/project-name-archetype-0.0.2-SNAPSHOT.jar
Create a New Project Using the Archetype

Create a new folder on your hard drive. Let's call it first-project. Then execute the following commands: 

cd first-project
mvn archetype:generate -DarchetypeCatalog=local

The archetype plugin asks for a groupId and artifactId as shown below: 

Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): : 1
Define value for property 'groupId': com.first
Define value for property 'artifactId': first-project
Define value for property 'version' 1.0-SNAPSHOT: : 
Define value for property 'package' com.first: : 
Confirm properties configuration:
groupId: com.first
artifactId: first-project
version: 1.0-SNAPSHOT
package: com.first
 Y: : Y

When the archetype plugin executes successfully, you should see the message shown below:

[INFO] Project created from Archetype in dir: /in28Minutes/git/microservice-archetype/first-project

Verify the New Project

You can do a mvn clean install command on the new project in first-project to check it everything is good.

This is a Spring Boot project with a couple of controllers and unit/integration tests.

Creating Your Own Reference Archetype

You can also create a reference archetype of your own. The first thing you need to do is to create a reference project —which would serve as the base for creating your archetype.

Setting Up a Reference Project

<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>3.0.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>

Reverse Engineering an Archetype From microservice-reference

In the command prompt, cd to the foler containing this project: 

cd microservice-reference
mvn archetype:create-from-project

You will see the following statements in the log: 

[INFO] Setting default groupId: com.organization.project
[INFO] Setting default artifactId: project-name
[INFO] Setting default version: 0.0.2-SNAPSHOT
[INFO] Setting default package: com.organization.project

An archetype project is created in microservice-reference/target/generated-sources/archetype

Copy the Created Archetype to the microservice-archetype Project

Copy the archetype project created in the above steps to the microservice-archetype folder.

Summary

In this article, we talked about the need for an archetype in a microservices architecture. An archetype serves a starting point for creating new projects and ensuring uniformity across microservices. We looked at an example archetype and got an overview of how to create an archetype.

 

 

 

 

Top