0%

MVC设计模式+JSP基础

M:Model模型 (包含 domain+dao+service)
V:View视图 (包含html+JSP)
C:Controller控制器 (包含Servlet)

开发顺序:M—>V—>C

JSP基础:

EL表达式:

1
${域对象存入的key}

JSTL标签库:

Java server pages standarded tag library 即JSP标准标签库

1
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

基础语法:

1
2
3
4
5
6
7
<c:if test=""></c:if>

<c:choose test="">
<c:when test=""></c:when>
</c:choose>

<c:forEach var="" items=""></c:forEach>

转发:

1
<jsp:forward page=""></jsp:forward>

web.xml配置首页:

1
2
3
4
<welcome-file-list>
<welcome-file></welcome-file>
<welcome-file></welcome-file>
</welcome-file-list>