我正在尝试将一个项目添加到导航中,该项目将指向诸如http://www.google.com之类的外部链接,但是我找不到有关如何执行操作的任何文档。
这是我如何使用导航.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>
最佳答案
根据您的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与org.gatein.mop.core.api.workspace.PageLink),但并未扩展到eXo对象层