如何在Gatein导航中创建到外部域的链接?

时间:2016-06-24 14:18:24

标签: java gatein

我正在尝试向我的导航中添加一个指向外部链接的项目,例如http://www.google.com,但我找不到任何关于如何操作的文档。

以下是我如何管理导航的示例,我使用的是navigation.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<node-navigation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.gatein.org/xml/ns/gatein_objects_1_4 http://www.gatein.org/xml/ns/gatein_objects_1_4"
xmlns="http://www.gatein.org/xml/ns/gatein_objects_1_4">
<priority>1</priority>
<page-nodes>
    <node>
        <name>WebFileHome</name>
        <label>WebFile User Resources</label>
        <page-reference>111::222::aaa</page-reference>
    </node>
    <!-- My WebFile Tools - Law Firm -->
    <node>
        <name>MyWebFileTools</name>
        <label>My WebFile Tools</label>
        <page-reference>111::222::bbb</page-reference>
        <node>
            <name>UserAdmin</name>
            <label>User Administration</label>
            <page-reference>111::222::ccc</page-reference>
        </node>
        <node>
            <name>Claim</name>
            <label>Claim Summary</label>
            <visibility>HIDDEN</visibility>
            <page-reference>111::222::ddd</page-reference>
        </node>
    </node>
  </page-nodes>
</node-navigation>

1 个答案:

答案 0 :(得分:1)

根据你的Gatein版本,这真的不可能......我自己遇到了同样的情况。过去可以使用“uri”元素(https://docs.jboss.org/gatein/portal/3.1.0-FINAL/reference-guide/en-US/html_single/#sect-Reference_Guide-Tips-Direct_External_Links),但我认为他们在早期版本(我认为是3.2.x)中放弃了这个功能。

我认为处理用例的另一种方法是在更高版本(3.8.x)中重新引入,但我们还没有升级到该版本(我们在3.7.1上)。为了在3.8.x上运行,我认为您需要使用不再基于Tomcat的Wildfly,因此我们的许多代码都无法运行,因此我无法验证。

要注意,MOP层(持久性)具有此功能(org.gatein.mop.core.api.workspace.URLLink vs org.gatein.mop.core.api.workspace.PageLink)但它没有扩展到eXo对象层