当我尝试启动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)
看起来某些渲染没有正确进行。我尝试将一些日志添加到页面中,但徒劳无功。你能帮忙吗?
最佳答案
您是否要通过直接点击JSP来导航到Alfresco Explorer中的管理控制台?相当确定那是行不通的。而是单击管理控制台图标,它是屏幕顶部左侧的第一个图标,看起来像一个DJ控制台,请参见下文:
请注意,Alfresco Explorer客户端非常老,如果可能,您应该使用Alfresco Share。它还包括一个管理控制台。
关于java - 无法打开Alfresco admin-consle.jsp,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18107950/