0

当我尝试启动 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)

看起来有些渲染没有正常进行。我尝试在页面中添加一些日志,但徒劳无功。你能帮忙吗?

4

1 回答 1

1

您是否尝试通过直接点击 JSP 来导航到 Alfresco Explorer 中的管理控制台?很确定那是行不通的。相反,单击管理控制台图标,这是屏幕顶部左侧的第一个图标,看起来像一个小 DJ 控制台,见下文:

单击此进入管理控制台

请注意,Alfresco Explorer 客户端相当旧,如果可能,您应该使用 Alfresco Share。它还包括一个管理控制台。

于 2013-08-07T21:57:12.153 回答