如果我们传递的参数中有中文,你会发现接收到的参数会出现中文乱码问题。
发送请求:
http://localhost/commonParam?name=张三&age=1出现乱码的原因相信大家都清楚,Tomcat8.5以后的版本已经处理了中文乱码的问题,但是IDEA中的Tomcat插件目前只到Tomcat7,所以需要修改pom.xml来解决GET请求中文乱码问题
发送请求与参数:
接收参数:
和GET一致,不用做任何修改
发送方式;

解决中文乱码方案:配置过滤器




将pom.xml中多余的内容删除掉,再添加SpringMVC需要的依赖
- "1.0" encoding="UTF-8"?>
-
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0modelVersion>
-
- <groupId>com.itheimagroupId>
- <artifactId>SpringMVCartifactId>
- <version>1.0-SNAPSHOTversion>
- <packaging>warpackaging>
-
- <name>SpringMVC Maven Webappname>
-
- <url>http://www.example.comurl>
-
- <properties>
- <project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
- <maven.compiler.source>1.8maven.compiler.source>
- <maven.compiler.target>1.8maven.compiler.target>
- properties>
-
- <dependencies>
- <dependency>
- <groupId>junitgroupId>
- <artifactId>junitartifactId>
- <version>4.11version>
- <scope>testscope>
- dependency>
- <dependency>
- <groupId>javax.servletgroupId>
- <artifactId>javax.servlet-apiartifactId>
- <version>3.1.0version>
- <scope>providedscope>
- dependency>
- <dependency>
- <groupId>org.springframeworkgroupId>
- <artifactId>spring-webmvcartifactId>
- <version>5.2.1.RELEASEversion>
- dependency>
- dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.tomcat.mavengroupId>
- <artifactId>tomcat7-maven-pluginartifactId>
- <version>2.1version>
- <configuration>
- <port>80port>
- <path>/path>
- configuration>
- plugin>
- plugins>
- build>
-
- project>


- package com.itheima.config;
-
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.Configuration;
-
- @Configuration
- @ComponentScan("com.itheima.controller")
- public class SpringmvcConfig {
- }
- package com.itheima.controller;
-
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
-
- //@Controller:Springmvc的bean标志
- @Controller
- //@RequestMapping("/user")
- public class UserController {
- @RequestMapping("/save")
- @ResponseBody
- public String save(){
- System.out.println("郭浩康第一个Sprintmvc项目创建成功");
- return "{spring1save()...}";
- }
- @RequestMapping("/delete")
- @ResponseBody
- public String delete(){
- System.out.println("");
- return "{detete删除运行成功}";
- }
- @RequestMapping("/kk")
- @ResponseBody
- public String kk(String name,int age){
- System.out.println("收到参数:"+name);
- System.out.println("收到参数:"+age);
- return "{kk成功}";
- }
- }
将web.xml删除,换成ServletContainersInitConfig
- package com.itheima.config;
-
- import org.springframework.web.context.WebApplicationContext;
- import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
- import org.springframework.web.servlet.support.AbstractDispatcherServletInitializer;
-
- public class ServletConfig extends AbstractDispatcherServletInitializer {
- //加载Springmvc容器
- @Override
- protected WebApplicationContext createServletApplicationContext() {
- AnnotationConfigWebApplicationContext ctx=new AnnotationConfigWebApplicationContext();
- ctx.register(SpringmvcConfig.class);
- return ctx;
- }
- //设置请求处理
- @Override
- protected String[] getServletMappings() {
- return new String[]{"/"};
- }
- //加载Spring容器
- @Override
- protected WebApplicationContext createRootApplicationContext() {
- return null;
- }
- }


控制台接收到参数