tags:

views:

286

answers:

2

Any idea how to use Jmeter for performance testing of Standalone Java app???

thanks

+1  A: 

JMeter is used for simulating network traffic to a server and testing the responsiveness of the other end in heavy loads situations. It will be of some use for you, if your application exposes a network interface (HTTP, TCP, FTP, SOAP). Then you could add a "Sampler" and configure a scenario, where a lot of requests will be sent at the same time.

kgiannakakis
A: 

One easy way is to use a junit test in jmeter.

Thomas Jung