0

我正在尝试在 URL 上传递参数,但出现托管 bean“无法实例化类:”错误。代码在这里:

创建网址:

  <h:outputLink id="link"
     value="#{facesContext.externalContext.requestContextPath}/Public/Home/altKanallar.jsf?id=#{item.id}&name=#{item.name}">
     <h:outputText value="#{item.name}" />
  </h:outputLink>

altKanallar.jsf

    <h:form>
        <div style="text-align: center;">

        <div style="text-align: left;">
        <h:panelGrid style="font-size: 12px; text-decoration:none; " width="100%">
            <h:dataTable value="#{altKanallarBean.categories}" var="item"  style=" width : 100%;">
                <h:column>
                    <h:outputLink id="link"
                        value="#{facesContext.externalContext.requestContextPath}/Public/Home/default.jsf">
                        <h:outputText value="#{item.name}" />
                    </h:outputLink>

                    <div style="style=clear:both; font-size:1px; height:2px; line-height:1px;">
                    </div>
                    <div style="border-bottom:1px solid #D3E8FF; font-size:1px; height:1px; line-height:1px;">
                    </div>
                    <div style="style=clear:both; font-size:1px; height:2px; line-height:1px;">
                    </div>
                </h:column>

            </h:dataTable>
        </h:panelGrid>
        </div>
    </h:form>

AltKanallarBean.java

public class AltKanallarBean {


    private   List<com.uzmantv.data.category.Item> categories;  

    public AltKanallarBean(){
        HttpServletRequest request=(HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
        System.out.println(request.getParameter("name"));
        System.out.println(request.getParameter("id"));
        categories = RestServices.getCategoriesById(Long.parseLong(request.getParameter("id"))).getItems();
        name = request.getParameter("name");
    }



    public List<com.uzmantv.data.category.Item> getCategories() {
        return categories;
    }



    public void setCategories(List<com.uzmantv.data.category.Item> categories) {
        this.categories = categories;
    }
}
4

2 回答 2

0

谢谢你的支持。问题已解决。

Jboss 没有部署AltKanallarBean类。决定关闭并重新打开 Eclipse 并清理 jboss 花了几个小时。

于 2010-09-29T13:16:45.073 回答
0

确保构造函数 AltKanallarBean() 不会引发异常。一般来说,不建议在构造函数中调用业务逻辑。

于 2010-09-29T12:41:17.170 回答