DEV Community

yas
yas

Posted on

deploy on production server ......... git pull-> maven build -> run jar

We started to decouple our codebase to multiple microservices.

we created a few java springboot microservices.

Our deploy strategy

Once we commit our files to git.
our deploy script will git pull the changes to the production server
do -> mvn build -> move JAR to a path -> start it up.

And its incredibly fast.

What do you think about this approach?

Top comments (0)