JSP/Servlet及相关技术详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSP/Servlet及相关技术详解相关的知识,希望对你有一定的参考价值。

 

JSP声明

技术分享

<%!声明部分%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>欢迎</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

</head>
<%!
//声明一个整数变量
public int count;
/*
定义一个方法
*/
public String info(){
return "hello";
}
%>
<body>
this is my test page !
<br>
<%=count++ %>
<%=info() %>

</body>
</html>

技术分享

 

 输出JSP表达式

<%=表达式%>

<%=count++ %>
<%=info() %>

替代out.println输出语句,输出表达式语法后不能有分号

 JSP脚本

技术分享

JSP的3个编译指令

技术分享

 JSP脚本的9个内置对象

技术分享

 

以上是关于JSP/Servlet及相关技术详解的主要内容,如果未能解决你的问题,请参考以下文章

SpringMVC框架及基本工作流程详解

TOMCAT原理详解及请求过程(转)

TOMCAT原理详解及请求过程

SSH框架学习笔记----JSP/servlet相关技术

jsp机制基础

Tomcat学习------Tomcat原理详解及请求过程