Home > Net >  how to deploy a java web application, spring boot, jpa?
how to deploy a java web application, spring boot, jpa?

Time:12-04

I need your help to deploy a web application developed with spring, java, jpa, mysql.

I have google cloud account.

I have deployed a REST service with a .jar file.

Do you have any reference to any manual or courses?

CodePudding user response:

You can either use Compute Engine to create a Virtual Machine, import your project as a jar or in another format, install java and run through the command line. You can find a guide from Google here. You may also want to take the route of using App Engine. Or, you can find a Google CodeLab for deploying a spring boot application here.

Google has a lot of documentation and guides for these sorts of things so go check out their developer website.

CodePudding user response:

You could consider deploying it on Cloud Run using source code or images.

If you're interested in it. Maybe this series could help a bit Springboot on Google Cloud CloudRun

  • Related