fizzwater

常用链接

统计

最新评论

JSF初试--解释错误原因error Traced[line: 5] The markup in the document preceding the root element must be well-formed.

因为所写的jsp文件不符合xhtml规则,
命名空间不要在使用@包含,
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@page contentType="text/html;charset=GB2312"%>

换成Xhtml格式:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
 xmlns:h="http://java.sun.com/jsf/html"
 xmlns:f="http://java.sun.com/jsf/core"
 xml:lang="en"
 lang="en">
 <head>
  <title>Index</title>
 </head>
 <body>
  
  <f:view>
        .......//此处省略
    </f:view>
 </body>
</html>


posted on 2008-04-03 15:41 Fizzwater 阅读(4031) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航: