0

I'm currently working on a maven project which has 5 modules. As part of bug fixes, I need to make some small changes in a java file and in order to get those changes refelected, I run a maven build(which is pretty time consuming) and get it deployed in Tomcat.

Is there a way to test my changes without running a maven build? Please advice.

2 Answers2

0

War file always use .class file

you can put your compiled .class file into folder used by tomcat.

Musaddique S
  • 1,539
  • 2
  • 15
  • 36
0

If you use the Eclipse IDE you can do it.

Right Click Project -> Export -> WarfileName , Destination -> Finish
robsiemb
  • 6,157
  • 7
  • 32
  • 46
sai
  • 111
  • 1
  • 3