jsp online refe...login
jsp online reference manual
author:php.cn  update time:2022-04-13 16:04:13

JSP tutorial


JSP is similar to PHP, ASP, ASP.NET and other languages, and is a language that runs on the server side.

JSP (full name Java Server Pages) is a kind of Web initiated by Sun Microsystems and co-created by many companies that allows software developers to respond to client requests and dynamically generate HTML, XML or other format documents. Technical standards for web pages.

JSP technology uses Java language as the scripting language. JSP web pages provide an interface for the entire server-side Java library unit to serve HTTP applications.

The JSP file suffix is ​​(*.jsp).

WEB applications developed by JSP can be used across platforms and can run on both Linux and Window.


The first JSP program

The first program to get started with language learning usually outputs "Hello World!", and the JSP output "Hello World!" code is as follows Shown:

<html>
    <head>
           <title>第一个JSP程序</title>
    </head>
    <body>
           <%
                  out.println("Hello World!");
           %>
    </body>
</html>

Start learning JSP

After understanding the basic concepts of JSP, let us now start learning JSP.

php.cn