我想使用richfaces 4 rich:tabPanel,我有这个代码:
<rich:tabPanel id="tabMenu" switchType="client">
<rich:tab id="overview" header="Overview">
</rich:tab>
<rich:tab id="results" header="Results">
</rich:tab>
</rich:tabPanel>
当我尝试使用 tabMenu 访问页面时,出现此异常:
java.lang.IllegalArgumentException: Cannot convert client of type class java.lang.String to class org.richfaces.component.SwitchType
at com.sun.el.lang.ELSupport.coerceToType(ELSupport.java:329)
如果我删除 switchType 属性,代码工作正常
我怀疑这可能是一个依赖问题,这些是我拥有的依赖:
richfaces-components-ui 4.1.0 Final
richfaces-core-impl 4.1.0 Final
知道为什么我会得到这个异常