JSP (java server page) is a server-side programming technology for making a web application.
JSP File can Contain HTML, CSS, Java Script code.
The extension of JSP file is “.jsp”.
JSP runs on various platform like windows, Linux, Unix, mac OS etc.
Easy to maintain because we can separate our presentation logic and business logic.
Suppose we modify a JSP file, then we don’t need to recompile and redeploy the project.
JSP file having less code as compare to servlet file.
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<% out.print("Hello World!"); %>
</body>
</html>