Vardok
Vardok

Reputation: 1

JHipster microservices as a single project

Working with JHipster.

I can not find examples, so the question.

Is it possible to create JHipster based on microservices as a single project?

Most examples are like https://github.com/viniciusboson/jhipster-microservice-example, i.e. each microservice is a separate project.

I would like to see:

.git
microservice1
microservice2
gateway
...

Thanks in advance.

Upvotes: 0

Views: 183

Answers (1)

Jochen Haßfurter
Jochen Haßfurter

Reputation: 915

The link you mentioned does it in exact the way you want to see. The microservice architecture can be expanded to

.git
orderbook
commission
production
billbook
deliverybook
...
gateway

Of course every microservice is a complete application of its own and will run without the others.

Take a look at Sasidharans Book, The new Voxxed websites and Raibles Book - here you'll find examples of how to build microservice architectures with generator-jhipster.

Upvotes: 1

Related Questions