当我尝试启动 Alfresco 的 admin-console.jsp 时,页面不动,它给出了一个没有错误的空白页面
下面是jsp,
<h:panelGrid id="admin-panel" columns="1" cellpadding="6" cellspacing="6" border="0" width="100%">
<a:actionLink value="#{msg.manage_users}" image="/images/icons/users.gif" action="dialog:manageUsers" styleClass="title" rendered="#{NavigationBean.allowUserGroupAdmin}" />
<a:actionLink value="#{msg.manage_groups}" image="/images/icons/group.gif" padding="2" action="dialog:manageGroups" styleClass="title" rendered="#{NavigationBean.allowUserGroupAdmin}" />
<a:actionLink value="#{msg.category_management}" image="/images/icons/categories.gif" padding="2" action="dialog:manageCategories" actionListener="#{CategoriesDialog.resetCategoryNavigation}" styleClass="title" />
<a:actionLink value="#{msg.import}" image="/images/icons/import.gif" padding="2" action="dialog:import" actionListener="#{BrowseBean.setupSpaceAction}" styleClass="title">
<f:param name="id" value="#{NavigationBean.currentNodeId}" />
</a:actionLink>
<a:actionLink value="#{msg.export}" image="/images/icons/export.gif" padding="2" action="dialog:export" actionListener="#{BrowseBean.setupSpaceAction}" styleClass="title">
<f:param name="id" value="#{NavigationBean.currentNodeId}" />
</a:actionLink>
<a:actionLink value="#{msg.system_info}" image="/images/icons/info_icon.gif" padding="2" action="dialog:showSystemInfo" styleClass="title" />
<a:actionLink value="#{msg.node_browser}" image="/images/icons/node_browser.gif" padding="2" action="dialog:showNodeBrowser" styleClass="title" />
</h:panelGrid>
但在日志中,我可以看到,
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
Aug 7, 2013 2:33:41 PM org.apache.catalina.core.ApplicationContext log
INFO: No Renderer found for component {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /jsp/admin/admin-console.jsp]} (component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Grid)
看起来有些渲染没有正常进行。我尝试在页面中添加一些日志,但徒劳无功。你能帮忙吗?