Tuesday, February 4, 2014

JSP introduction

JSPs are converted into servlets before contatiner run
JSPs reduce the skill level of developers
Translation is completed servlet is compiled and loaded into memory



<!DOCTYPE html>
<%@ page contentType="text/html;charset=windows-1252"%>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
        <title>test</title>
    </head>
    <body>
    <%
    out.println("Hellow World");
    %>
    </body>
</html>

No comments: