I don't use web.xml in my project. Therefore I extend WebMvcConfigurerAdapter for my MVC config and AbstractAnnotationConfigDispatcherServletInitializer for initializing app. I need to set encoding to UTF-8. How can I add filter mappings?
I want to achieve following code in Java based configuration.
<filter>
<filter-name>characterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>