gpt4 book ai didi

java - 无法打开 Alfresco admin-consle.jsp

转载 作者:行者123 更新时间:2023-12-01 14:15:53 28 4
gpt4 key购买 nike

当我尝试启动 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 控制台,如下所示:

Click this for the admin console

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

关于java - 无法打开 Alfresco admin-consle.jsp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18107950/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com