All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.web.filter.CharacterEncodingFilter Maven / Gradle / Ivy

/*
 * Copyright 2002-2005 the original author or authors.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.web.filter;

import java.io.IOException;

import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet 2.3 Filter that allows to specify a character encoding for requests.
 * This is useful because current browsers typically do not set a character
 * encoding even if specified in the HTML page or form.
 *
 * 

Can either just apply this filter's encoding if the request does not * already specify an encoding, or apply this filter's encoding in any case. * * @author Juergen Hoeller * @since 15.03.2004 * @see #setEncoding * @see #setForceEncoding */ public class CharacterEncodingFilter extends OncePerRequestFilter { private String encoding; private boolean forceEncoding; /** * Set the encoding to use for requests. This encoding will be * passed into a ServletRequest.setCharacterEncoding call. *

Whether this encoding will override existing request * encodings depends on the "forceEncoding" flag. * @see #setForceEncoding * @see javax.servlet.ServletRequest#setCharacterEncoding */ public void setEncoding(String encoding) { this.encoding = encoding; } /** * Set whether the encoding of this filter should override existing * request encodings. Default is false, i.e. do not modify encoding * if ServletRequest.getCharacterEncoding returns a non-null value. * @see #setEncoding * @see javax.servlet.ServletRequest#getCharacterEncoding */ public void setForceEncoding(boolean forceEncoding) { this.forceEncoding = forceEncoding; } protected void doFilterInternal( HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException { if (this.forceEncoding || request.getCharacterEncoding() == null) { request.setCharacterEncoding(this.encoding); } filterChain.doFilter(request, response); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy