I have quite big project and I want to debug it in Eclipse. My project contains main package and few dependencies, everything linked with maven. I can 'mvn package' this, make .war file, deploy to tomcat and everything works fine but it is time consuming. Now I want to do the same thing - deploy to localhost but also add possibility of debugging. So basically I want to click "debug" on my project, open browser > localhost, do some tests and see results in Eclipse. Problem is I cannot find any good tutorial or configuration guide. Can anyone link something?
Asked
Active
Viewed 1,966 times
1
-
2maven packaging and can be done from eclipse quite easily and also for opening local host and run your testcase, you create a jenkins job. you can integrate that jenkins job to eclipse using https://marketplace.eclipse.org/content/hudsonjenkins-mylyn-builds-connector – DevD Jun 09 '16 at 10:43
1 Answers
2
You have 2 options
- Remote debugging (as stated in comments)
- Import maven project to eclipse and debug as usual.

Community
- 1
- 1

Jordi Castilla
- 26,609
- 8
- 70
- 109