saltfish666 / fileCloud

0 stars 0 forks source link

JSP #5

Open saltfish666 opened 6 years ago

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

直接编写保存为.jsp文件即可,tomcat自动编译成html。

saltfish666 commented 6 years ago

菜鸟教程 讲的比较详细,深入浅出