gpt4 book ai didi

jsf-2 - 如何处理未找到的 javax.faces.resource 资源

转载 作者:行者123 更新时间:2023-12-02 04:50:58 28 4
gpt4 key购买 nike

当我从 javax.faces.resource 输入一个指向不存在资源的 url 时,例如

http://myapp/javax.faces.resource/noexisting.xhtml 

我得到默认的 HTTP 404 页面,而我的 404 错误页面没有被呈现。我知道 FacesServlet 将状态代码设置为 404 而不是发送 en 错误,这就是我的错误页面从未被调用的原因。有没有办法覆盖此实现以发送错误而不是设置状态代码?

我使用的是 primefaces 3.5 和 morajara 2.1.14。

感谢您的帮助。

最佳答案

我自己找到了解决方案。我实现了自己的 ResourceHandlder 并检查资源是否存在。如果资源不存在,我将发送 404 错误。如果其他人有同样的问题,这里是代码:

package com.mypackage;

import java.io.IOException;
import javax.faces.application.Resource;
import javax.faces.application.ResourceHandler;
import javax.faces.application.ResourceHandlerWrapper;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.lang3.StringUtils;
import com.sun.faces.util.Util;

public class MyResourceHandler extends ResourceHandlerWrapper {

// Properties
// -----------------------------------------------------------------------------------------------------

private final ResourceHandler wrapped;

public MyResourceHandler (final ResourceHandler wrapped) {
this.wrapped = wrapped;
}

@Override
public ResourceHandler getWrapped() {
return wrapped;
}


/**
* @see javax.faces.application.ResourceHandlerWrapper#isResourceRequest(javax.faces.context.FacesContext)
*/
@Override
public boolean isResourceRequest(final FacesContext context) {
return super.isResourceRequest(context);
}

@Override
public void handleResourceRequest(FacesContext context) throws IOException {
String resourceId = normalizeResourceRequest(context);
if (null != resourceId && resourceId.startsWith(RESOURCE_IDENTIFIER)) {
Resource resource = null;
String resourceName = null;
if (ResourceHandler.RESOURCE_IDENTIFIER.length() < resourceId.length()) {
resourceName = resourceId.substring(RESOURCE_IDENTIFIER.length() + 1);
if (!StringUtils.isEmpty(resourceName)) {
resource =
context
.getApplication()
.getResourceHandler()
.createResource(resourceName,
context.getExternalContext().getRequestParameterMap().get("ln"));
}
}
if (resource == null) {
HttpServletResponse response =
(HttpServletResponse) context.getExternalContext().getResponse();
response.sendError(404);
return;
}
}
super.handleResourceRequest(context);
}

private String normalizeResourceRequest(FacesContext context) {

String path;
String facesServletMapping = Util.getFacesMapping(context);
// If it is extension mapped
if (!Util.isPrefixMapped(facesServletMapping)) {
path = context.getExternalContext().getRequestServletPath();
// strip off the extension
int i = path.lastIndexOf(".");
if (0 < i) {
path = path.substring(0, i);
}
} else {
path = context.getExternalContext().getRequestPathInfo();
}
return path;
}


}

关于jsf-2 - 如何处理未找到的 javax.faces.resource 资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18858529/

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