SpringMVC-form submission garbled problem

Sometimes when the front and back ends are not separated, this problem occurs when you submit the form directly.
Join in web.xml

<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>
    </filter>
    <filter-mapping>
        <filter-name>CharacterEncodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

Configure the interceptor

Guess you like

Origin blog.csdn.net/qq_36008278/article/details/115138249