x_choose.jsp

来自「JavaWeb高级特性书中源代码」· JSP 代码 · 共 18 行

JSP
18
字号
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<%@ page contentType="text/html;charset=gb2312" %>
<x:parse var="customer">
	<customers>
		<customer>
			<name>zhangsan</name>
		</customer>
	</customers>
</x:parse>
<x:choose>
	<x:when select="$customer//name">
		Hello <x:out select="$customer//name" />
	</x:when>
	<x:otherwise>
		Hello my friend
	</x:otherwise>
</x:choose>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?