I'm quite new to performance testing and am looking to be pointed in the right direction.
I have a Java project which contains two parts, deployed seperately:
- A service-broker, published as a webservice; which has service and db wrappers.
- A front end, which has a service-broker facade, business logic and a Spring MVC UI.
It is deployed on tomcat, which is running on a fresh install of Windows server 2008.
I need to do basic soak testing on this project, to highlight major memory leaks performance issues.
I've been told SOAP UI is the tool I need to do this.
Now for my questions:
- Soap UI (Load UI) is only appropriate as the load-generator for testing the service-broker aspect of the project, right?
- What additional tools would be helpful (Something to visualize garbage collection, memory use, heap/stack size etc?)
- Can I use Load UI as a load generator for a Spring MVC Front end? If not, what's an appropriate alternative?
Thanks a lot.