在Google App Engine里使用JSTL

在Google App Engine下,这样的JSP文件是不能正常显示内容的:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<title>test</title>
</head>
<body>
	hello ${user.id}: <br/>
        your name is: ${user.name}
</body>
</html>


显示的结果是:
引用

hello ${user.id}:
your name is: ${user.name}


要使Google App Engine的jsp文件支持JSTL,就要在文件的头部加入以下的代码:
<%@ page isELIgnored="false" %>

你可能感兴趣的:(java,html,jsp,Google,sun)