JSP Tutorial
Java Server Pages(jsp) is used to make server side web applications. JSP tags <% ----java code----%>. It provides functionality like JSTL,expression language.
Netbean IDE is used to development of java server pages.
JSP Performance
- Jsp execute code faster.
- Jsp syntax are easy to understand.
- You can able to use jsp code in various operating system(platform independent).
- Jsp allow you write java and servlet code inside jsp.
Use of JSP
- JSP is used to develop server side application development.
- You can create secure web application using jsp. Protected from sql injection and cross site scripting(xss) attck.
- Jsp processing web application is fast.
Basic JSP Hello World Program Example
Create basic jsp hello world program.
index.jsp<html> <body> <% out.print("Hello World"); %> </body> </html>
OutPut
Hello World