Home > OS >  How can I host my Springboot application in my own computer like a background service?
How can I host my Springboot application in my own computer like a background service?

Time:10-30

I want to host my springboot application on my on PC, I want it to start with the computer, just like databases do. But I can't find anything related (probably because I am asking the 'wrong' way). There is any way to start the springboot application with my pc in the background, with no CMD showing or having to keep intelijj open?

I tried to search how to host the application, but didn't found any thing 'locally' based, everything was how to host in X cloud or Y domain/host. What I want is to my application run on the background of my PC so I can use it as a personal system, but don't want to keep a cmd open or intelijj

Also I can't really use docker.. that was the way I was trying before, but I can't let Hyper-v active..

CodePudding user response:

There are 2 steps:

  1. Get command line of execution of your application runned by IntelliJ. To do so: enter image description here

  2. You have to create a file with extension ".bat" (batch file) with the contents of the command copied above, than follow the steps bellow to define it to run in the startup configuration of the windows 10: Run a batch file at loading of Windows 8 and 10 Once the shortcut is created, right-click the shortcut file and select Cut. Press Start, type Run, and press Enter . In the Run window, type shell:startup to open the Startup folder.

  • Related