Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying/Running jvm application on a remote-host from Intellij

Would it be possible to deploy/run (for testing purposes) a standalone Java application on a remote server from intellij? I'm not trying to connect to an already running JVM, but to start a new JVM on the remote host from intellij just like it was running on my local machine?

like image 360
epdittmer Avatar asked Sep 29 '22 14:09

epdittmer


1 Answers

There is no built-in support for it at the moment. You can deploy an application to an application server running on a remote machine, but if you have a standalone application, there is no built-in feature to deploy it.

That said, you can write an Ant script or a shell script to deploy your app, and use either the Ant integration or the external tool feature to run it from with in IntelliJ IDEA.

like image 112
yole Avatar answered Oct 06 '22 02:10

yole