spring字符集過濾器可以解決專案中出現的中文亂碼的問題,配置很簡便,只要在web.xml上配置即可。
web.xml配置檔案新增
encodingfilter字符集過濾器有兩個重要引數,分別是encoding和forceencodingorg.springframework.web.filter.characterencodingfilter
encoding
utf-8
forceencoding
true
/*
encoding:字符集,即將過濾到的request的字符集設定為encoding指定的值,如utf-8等
forceencoding:字面意思是強制字符集,但你大可不必按字面意思理解,因為這個引數的值只不過是指定response的字符集是否也設定成encoding所指定的字符集,所以你可以選擇設定為true或false
參考文獻
1:spring mvc過濾器-字符集過濾器(characterencodingfilter)
2:spring字符集過濾器characterencodingfilter
spring過濾器篇
characterencodingfilter spring的web包下的乙個過濾器,用於設定程式的字元編碼,它有兩個引數encoding和forceencoding.encoding 字符集,將過濾到的request編碼設定為指定編碼 forceencoding 布林值,設定是否將response...
spring編碼過濾器配置
filter filter name encodingfilter filter name filter class org.springframework.web.filter.characterencodingfilter filter class init param param name e...
Vue 過濾器案例(全域性過濾器和區域性過濾器)
doctype html en utf 8 viewport content width device width,initial scale 1.0 js vue 2.4.0 js script 過濾器 title head 兩個過濾器的名稱都為msgformat,但是控制不同作用,乙個是全域性的...