performance comparison to older online legacy system
randy wilson
Greenhorn
Joined: Dec 04, 2002
Posts: 4
posted
0
We are converting (re-architecting) an old UNIX based COBOL on-line system (VSAM files) to be web based J2EE database and need a proven way to measure response time. Any suggestions out there?
Wouter Zelle
Ranch Hand
Joined: Apr 12, 2002
Posts: 30
posted
0
Do you want to have a set of performance metrics that you can update whenever you make changes or do you want to run one-off tests? The most interesting approach might be to combine Unit tests with performance measuring. This allows you to have rigorous regression tests for both functionality and performance. You can time Unit tests using JUnitPerf: http://www.clarkware.com/software/JUnitPerf.html There are various approaches to testingEJB, you can find Unit testing tools here: http://www.junit.org/news/extension/j2ee/index.htm [ April 29, 2003: Message edited by: Wouter Zelle ]