I am wondering how NetBeans handles my package that contains my class source code to be compiled as a servlet
For manual cases in which I only install Tomcat or any other webservers and have them work out with my servlet, I may need to access my jsp page as http://host/app/mypackage.myclassname/
But in case of netbeans, things become easier as it do all stuff underneath for me and I only need to call something like
http://host/app/myclassname/
and it works. There is no need to use a dot to call my class from a specified package name. Awesome!
By the way, how is doGet, doPost functions are processed. They don't seem to be called anywhere in my code but they are called when I specify their class container name in my URL.
Thank you so much for any replies.