Basic JSP question
Hi,
I'm starting to use JSP, and I have a few basic questions. I've found some tutorials online, such as the J2EE tutorial, and some others through Google, that have been helpful. However, after reading some tutorials, I still have a basic question:
If I have a Java class file, can I access that class' methods through my web page using JSP, and then retrieve information from that class?
For example, if I have a class MyClass, a method myMethod, and an ArrayList<String> arr, would I be able to do something like this from my web page?
MyClass.myMethod();
MyClass.arr.get(0);
If anyone can give me some advice, or possibly link me to a tutorial that will explain this, I will be very appreciative.

