I am new to JSP and I was looking at the JSP code getting converted to Servlet code. When the JSPC(compiler) converts the code into Servlet code and calls the JAVAC compiler to generate the .class file. Then doesn't JSP compiler hand it over to the Servlet Container for further execution?
Also if it goes to the Servlet container,then how does Servlet API recognize the lifecycle methods as they are named as JSPInit, JSPDestroy and so on because in Servlet Interface the method names are different.I am a little confused as to what happens.