Deploying / running a jvm application on a remote host from Intellij

Is it possible to deploy / run (for testing purposes) a stand-alone Java application on a remote server from intellij? I am not trying to connect to an already running JVM, but to start a new JVM on a remote host from intellij, like on my local machine?

+3
source share
1 answer

There is currently no built-in support. You can deploy the application to an application server running on a remote computer, but if you have a stand-alone application, there is no built-in function to deploy it.

However, you can write an Ant script or shell script to deploy your application and use either Ant integration or an external tool function to run it using IntelliJ IDEA.

+3
source

Source: https://habr.com/ru/post/1247116/


All Articles