我将Pretty Faces与Spring,Spring Security和JSF结合使用。我的问题是,当我点击一个声明如下的链接时,我得到一个奇怪的url字符串:
<h:link outcome="pretty:imprint">Imprint</h:link>
漂亮-config.xml中
<pretty-config xmlns="http://ocpsoft.com/prettyfaces/3.3.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ocpsoft.com/prettyfaces/3.3.0
http://ocpsoft.com/xml/ns/prettyfaces/ocpsoft-pretty-faces-3.3.0.xsd">
<url-mapping id="imprint">
<pattern value="/Imprint" />
<view-id value="/imprint.xhtml" />
</url-mapping>
</pretty-config>
但是当我按照链接而没有奇怪的附加字符串(http://localhost:8080/MyWebApp/Imprint)时,我也会转到右页。
有没有人知道这个字符串来自何处?