JSF入门遇到的问题
按照网上给的教程搭建了一个可以运行JSF+EJB+JPA的小型项目的环境,但是运行时发现报出以下错误:
Unable to convert string "请输入一个数字:" to class "javax.el.ValueExpression" for attribute "value": Property Editor not registered with the PropertyEditorManager
at org.apache.jasper.runtime.JspRuntimeLibrary.getValueFromPropertyEditorManager(JspRuntimeLibrary.java:854)
at org.apache.jsp.hdty.project.system.test_jsp._jspx_meth_h_005foutputText_005f0(test_jsp.java:292)
at org.apache.jsp.hdty.project.system.test_jsp._jspx_meth_h_005fform_005f0(test_jsp.java:245)
.......
其中"请输入一个数字:" 这个String和 "value"这个词来自我想要加载的一个jsp页面,jsp页面代码如下:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<html>
<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=GB2312">
<title>第一个JSF程序</title>
</head>
<body>
<f:view>
<h:form id="simpleForm">
<h:outputText id="favoriteLabel" value="请输入一个数字:"/>
<h:inputText id="favoriteValue" value="#{simple.longValue}">
<f:validateLongRange maximum="30" minimum="0"></f:validateLongRange>
</h:inputText>
<p/>
<h:commandButton id="submit" value="提交" action="#{simple.simpleActionMethod}"/>
</h:form>
</f:view>
</body>
</html>
求助此问题,已经琢磨一个星期了....
用t(tomahawk)标签或者p(PrimeFaces)标签试试