tags:

views:

19

answers:

1

I have installed and configured jstat in my PC with Windows XP, tested it with sample Java program. But I need to know how to use jstat with JSP or Tomcat, is there any other futher configuration needed or not?

A: 

In principle not. You can just write, import and execute Java code in a JSP or preferably in a Servlet class the same way as you do with a "plain vanilla" Java class. The webserver has however to run at the same machine as the jstat runs.

BalusC