我使用的是Mojarra 2.1和RichFaces。
我有以下行动方法:
public String doSave() {
//do some
return "someView";
}
通过引用
来调用<a4j:commandButton action="#{theBean.doSave}" />
和视图文件someView.jspx
。但是在调用了action方法之后,我被重定向到了适当的视图,但是丢失了该视图中的所有css样式。实际上,页面的head标签是空的:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
someView
页面限制为会话范围的bean。
我真的不知道它可以捆绑什么?需要一些建议。
顺便说一句,它与h:commandButton
完全正常。它是一个richFaces的bug吗?