java3 JSP Life Cycle Hello~!!! With the code above, you can test how JSP life cycle works. First, check on Java file that has created after you create JSP file. Location: ...workplace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\work\Catalina\localhost\firstWeb\org\apache\jsp public void jspInit(){ System.out.print("jspInit()"); } public void jspDestroy(){ System.out.print("jspDestroy()"); } Just like servlet.. 2019. 8. 7. What is JSP(Java Server Page)? A sum of 1 to 10 : JSP is a scripting language that allows us to use Java inside HTML code.In or area, you can write Java code and when it runs, the code is converted into Servlet.For example, the code above has . This part will be converted into out.print(). lecture from www.edwith.org 2019. 8. 6. Java Quiz Summary word => means it was on the exam 1. Inheritance Inheritance allows a subclass to be derived from its parent superclass. The subclasses will inherit all the non-private members (fields and methods). Inheritance is a form of code reuse. Once subclass was inherited, no need to use super to access superclass methods; they are inherited automatically. 2. VS : Inheritance : Aggregation and Composition.. 2019. 4. 8. 이전 1 다음