Working with tomcat + Eclipse + SublimeText (Frontend)

0

We are creating a web project using Eclipse (IDE) and SpringMVC. The development team has two people, separated in Front-end and Back-end (we are using GIT for versioning). For the Front-end we would like to use SublimeText instead of Eclipse. But Sublime does not deploy the application on tomcat, Eclipse does this automatically and also republishes the changed files.

What is the best way to use SublimeText as the Front-end (view) and Eclipse Back-end editor and both deploy the application in tomcat?

    
asked by anonymous 26.10.2017 / 14:32

1 answer

0

I would start by running the application without eclipse .

You probably use Maven or Gradle in the project. Both tools offer plugins ( maven | gradle ) to deploy a war with a simple command in the terminal. After installing to configure the plugin, just run:

mvn tomcat7:deploy

or

gradle war tomcatRun

Then you could still install the Glue and run these commands inside the Sublime .

    
26.10.2017 / 17:30