编写jsp时,Sun公司提供了便利,request、response、out、session、application、config、pageContext(代表本页)可以直接用,叫做隐式对象。想想jsp会被转成一个Servlet,这些对象就自然会用了。
例 2.1
a.html:
<html>
<body bgcolor="red">
<form action="jsp1.jsp">
Customer Name: <input type=text name=text1>
<input type=submit value=Enter>
</form>
</body>
</html>
jsp1.jsp
<html>
<body bgcolor=green>
<%
String name=request.getParameter("text1");
%><font color=red>
<b>Welcome <%=name %>
</b>
</font>
</body>
</html>
jsp编写过程可以用所有隐式对象,自己写的类和jsp里面自己写的方法。
例 2.2
package com;
public class DatabaseConn {
public static void prin(){
System.out.println("hello");
}
}
<%@ page import="com.*,java.util.*" contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
jsp1
</title>
</head>
<body bgcolor="#ffffff">
<%!
void pri()
{
/*下面的Session不能用,因为不在service里面*/
// String count1=(String) session.getAttribute( "theNum" );
System.out.println("hello again");
}
%>
<%
更多请看:https://blog.csdn.net/qq_44594371/article/details/103167674