postman测试请求参数中文乱码问题

当我们使用idea测试后端接口是,一般使用的都是postman,但是当请求参数中有中文时,就会发现后端接收到的是乱码,解决方法如下:

找到本地的tomcat,在/conf目录下找到server.xml,

找到                 connectionTimeout="20000"
               redirectPort="8443" />这一段配置,里面加上                connectionTimeout="20000"
               redirectPort="8443" URIEncoding="UTF-8"/>

你可能感兴趣的:(java,postman)