我正在使用 Primefaces 和 Spring 在 JSF 2 中构建一个在线应用程序。我想使用 Pretty Faces 使我们的搜索网址可收藏。
这是我的漂亮配置.xml:
<?xml version="1.0" encoding="UTF-8"?>
<pretty-config xmlns="http://ocpsoft.org/prettyfaces/3.3.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ocpsoft.org/xml/ns/prettyfaces/ocpsoft-pretty-faces-3.3.3.xsd">
<url-mapping id="index">
<pattern value="/" />
<view-id value="/sites/public/template/index.xhtml" />
</url-mapping>
<url-mapping id="searchWithParams">
<pattern value="/search/#{searchView.searchQuery}/#{searchView.searchTags}/#{searchView.searchOrder}" />
<view-id value="/sites/public/product/productSearch.xhtml" />
</url-mapping>
<url-mapping id="searchWithoutParams">
<pattern value="/search" />
<view-id value="/sites/public/product/productSearch.xhtml" />
</url-mapping>
</pretty-config>
这是我要注入的 Bean:
@Component
@Scope("request")
public class SearchView {
private String searchQuery = "";
private String searchTags = "";
private String searchOrder = "";
public SearchView() {
// void
}
public void navigate() {
String url = "";
try {
url = "/search" +
"/" + URLEncoder.encode(searchQuery, "UTF-8") +
"/" + URLEncoder.encode(searchTags, "UTF-8") +
"/" + URLEncoder.encode(searchOrder, "UTF-8");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
url = "/search";
}
try {
FacesContext.getCurrentInstance().getExternalContext().redirect(url);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// Getters and Setters ...
}
只有“/search”可以正常工作。我还尝试更改 pretty-config.xml 中的映射顺序,并对其他两个参数使用虚拟值,并且只使用一个参数。我尝试的另一件事是将表达式“#{bean.param}”更改为“#{getParam : bean.param}”。更改我的 bean 的范围也无济于事。
在网页上,我使用了一个以“searchView.navigate”作为操作参数的 primefaces 命令链接。
我总是收到以下错误消息:
HTTP 状态 404 - /search/a/b/c
类型状态报告
消息/搜索/a/b/c
描述 请求的资源 (/search/a/b/c) 不可用。