jsf1.2在jboss as 5.1.0GA上试用失败,来向大家请教了

眯着眼的老狼 2009-09-02
jboss as 5.1.0GA发布了,就下了试试。原来在jboss4.2.3GA上正常运行的程序在jboss as 5.1.0GA上跑不起来了。

做了非常简单的view和bean试试看,结果:
在facelets环境下(xhtml),action却报property not found
在纯jsf环境下(jsp),action报method not found
在4.2.3下测试正常

我想jboss as不会出现这么明显的bug吧。麻烦大家指点。

附上纯jsf的测试

view:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f"  uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h"  uri="http://java.sun.com/jsf/html"%>
<!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=ISO-8859-1">
<title>test</title>
</head>
<body>
<f:view>
<h:form><h:commandButton value="test" action="#{test.t}"/></h:form>
</f:view>
</body>
</html>

bean:
package test;

public class TestBean {
public String t(){
return "SUCCESS";
}
}
terryzhou 2009-09-02
不用JBOSS,DEPLOY个JBOSS自己的RICHFACES DEMO试试
cyberblue 2009-09-03
faces-config.xml呢?
眯着眼的老狼 2009-09-04
谢谢二位。已经好了。^_^
Global site tag (gtag.js) - Google Analytics