Create Java project with Maven archetype spring-boot-service

An archetype which generates a complete spring-boot-service with an RESTFUL api with dummy implementation. Each application layer is Additionally creates an FeignClient coupled to the API of the service, which clients could use. Check https://github.com/bitgrip/spring-boot-archetype

Create a Java Project by archetype spring-boot-service with Command Line:

mvn archetype:generate   -DgroupId="com.mycompany.app"   -DartifactId="my-app-id"   -DarchetypeGroupId="de.bitgrip.archetypes"   -DarchetypeArtifactId="spring-boot-service"   -DarchetypeVersion="0.1.0"   -DinteractiveMode=false 

Generated Project modules

  • api
  • domain
  • service
  • application
  • controller
  • client

Details about maven archetype spring-boot-service

License

License

GroupId

GroupId

de.bitgrip.archetypes
ArtifactId

ArtifactId

spring-boot-service
Version

Version

0.1.0
Type

Type

maven-archetype
Description

Description

An archetype of a spring-boot-service
An archetype which generates a complete spring-boot-service with an RESTFUL api with dummy implementation. Each application layer is Additionally creates an FeignClient coupled to the API of the service, which clients could use. Check https://github.com/bitgrip/spring-boot-archetype
Project URL

Project URL

https://github.com/bitgrip/spring-boot-archetype
Source Code Management

Source Code Management

https://github.com/bitgrip/spring-boot-archetype

How to add to project

mvn archetype:generate -DgroupId=<com.mycompany.app> -DartifactId=<my-app>  -DarchetypeGroupId=de.bitgrip.archetypes -DarchetypeArtifactId=spring-boot-service -DarchetypeVersion=0.1.0 -DinteractiveMode=false

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.