Package org.broadleafcommerce.common.web.util

Examples of org.broadleafcommerce.common.web.util.StatusExposingServletResponse


            if (urlProcessor instanceof NullURLProcessor) {
                // Pass request down the filter chain
                if (LOG.isTraceEnabled()) {
                    LOG.trace("URL not being processed by a Broadleaf URLProcessor " + requestURIWithoutContext);
                }
                StatusExposingServletResponse sesResponse = new StatusExposingServletResponse(response);
                filterChain.doFilter(request, sesResponse);
                if (sesResponse.getStatus() == sesResponse.SC_NOT_FOUND) {
                    if (LOG.isWarnEnabled()) {
                        LOG.warn("Page not found.  Unable to render " + requestURIWithoutContext);
                    }
                    urlCache.invalidate(requestURIWithoutContext);
                }
View Full Code Here

TOP

Related Classes of org.broadleafcommerce.common.web.util.StatusExposingServletResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.