SpringMVC五种类型参数传递及json传递参数

作者:不会压弯的小飞侠 时间:2022-07-26 15:08:24 

学习内容:

1.普通参数
2.pojo参数
3.嵌套pojo
4.数组参数
5.集合参数
6.解决中文乱码
7.json数据传递参数

案例分析:

1.pom.xml

<?xml version="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.0</modelVersion>

? <groupId>org.example</groupId>
? <artifactId>SpringMVC-Demo1</artifactId>
? <version>1.0-SNAPSHOT</version>
? <packaging>war</packaging>

? <dependencies>
? ? <dependency>
? ? ? <groupId>org.springframework</groupId>
? ? ? <artifactId>spring-webmvc</artifactId>
? ? ? <version>5.2.22.RELEASE</version>
? ? </dependency>
? ? <dependency>
? ? ? <groupId>javax.servlet</groupId>
? ? ? <artifactId>javax.servlet-api</artifactId>
? ? ? <version>4.0.1</version>
? ? ? <scope>provided</scope>
? ? </dependency>
? ? ?<dependency>
? ? ? <groupId>com.fasterxml.jackson.core</groupId>
? ? ? <artifactId>jackson-databind</artifactId>
? ? ? <version>2.13.3</version>
? ? </dependency>
? </dependencies>
</project>

2.ServletContainersInitConfig

package com.study.config;
import org.springframework.web.filter.CharacterEncodingFilter;
import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

import javax.servlet.Filter;

public class ServletContainersInitConfig extends AbstractAnnotationConfigDispatcherServletInitializer {

? ? @Override
? ? protected Class<?>[] getRootConfigClasses() {
? ? ? ? return new Class[0];
? ? }

? ? @Override
? ? protected Class<?>[] getServletConfigClasses() {
? ? ? ? return new Class[]{SpringMvcConfig.class};
? ? }

? ? @Override
? ? protected String[] getServletMappings() {
? ? ? ? return new String[]{"/"};
? ? }
? ? @Override
? ? protected Filter[] getServletFilters() {
? ? ? ? CharacterEncodingFilter filter = new CharacterEncodingFilter();
? ? ? ? filter.setEncoding("UTF-8");
? ? ? ? return new Filter[]{filter};
? ? }
}
/*
public class ServletContainersInitConfig extends AbstractDispatcherServletInitializer {
? ? //加载SpringMVC容器配置
? ? @Override
? ? protected WebApplicationContext createServletApplicationContext() {
? ? ? ? AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
? ? ? ? ctx.register(SpringMvcConfig.class);
? ? ? ? return ctx;
? ? }
? ? //设置哪些请求可以归属SpringMVC处理
? ? @Override
? ? protected String[] getServletMappings() {
? ? ? ? return new String[]{"/"};
? ? }
? ? //加载Spring容器配置
? ? @Override
? ? protected WebApplicationContext createRootApplicationContext() {
? ? ? ? AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
? ? ? ? ctx.register(SpringConfig.class);
? ? ? ? return ctx;
? ? }
}*/

3.SpringMvcConfig

package com.study.config;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan("com.study.controller")
public class SpringMvcConfig {
}

4.UserController

package com.study.controller;

import com.study.domain.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.Arrays;
import java.util.List;

@Controller
public class UserController {
? ? //1.普通参数传递
? ? @RequestMapping("/commonParam")
? ? @ResponseBody
? ? public String commonParam(String name,int age){
? ? ? ? System.out.println("普通参数传递name:"+name);
? ? ? ? System.out.println("普通参数传递age:"+age);
? ? ? ? return "'module':'common param'";
? ? ? ? //http://localhost:8080/SpringMVC_Demo3/commonParam?name=tom&age=13 ?普通参数传递name:jack ?普通参数传递age:13
? ? }
? ? //2.pojo参数传递
? ? @RequestMapping("/pojo")
? ? @ResponseBody
? ? public String pojoParam(User user){
? ? ? ? System.out.println("pojo参数传递user:"+user);
? ? ? ? return "'module':'pojo.....'";
? ? ? ? //http://localhost:8080/SpringMVC_Demo3/pojo?name=%E5%B0%8F%E9%A3%9E%E4%BE%A0&age=13
? ? ?//pojo参数传递user:User{name='小飞侠', age=13}
? ? }
? ? // 3.嵌套pojo参数
? ? @RequestMapping("/pojos")
? ? @ResponseBody
? ? public String pojosParam(User user){
? ? ? ? System.out.println("pojos参数传递user:"+user);
? ? ? ? return "'module':'pojos.....'";
? ? ? ? //http://localhost:8080/SpringMVC_Demo3/pojos?name=%E5%B0%8F%E9%A9%AC%E5%93%A5&age=13&address.province=%E6%B2%B3%E5%8D%97&address.city=%E5%95%86%E4%B8%98
? ? ? ? //pojo参数传递user:User{name='小马哥', age=13, address=Address{province='河南', city='商丘'}}
? ? }
? ? //4.数组参数传递
? ? @RequestMapping("/arr")
? ? @ResponseBody
? ? public String array(String [] arr){
? ? ? ? System.out.println("数组参数传递arr:"+ Arrays.toString(arr));
? ? ? ? return "'module':'array.....'";
? ? ? ? //http://localhost:8080/SpringMVC_Demo3/arr?arr=1&arr=2&arr=3
? ? ? ? //数组参数传递arr:[1, 2, 3]
? ? }
? ? //5.集合参数
? ? @RequestMapping("/coll")
? ? @ResponseBody
? ? public String collection(@RequestParam List<String> colls){
? ? ? ? System.out.println("集合参数传递colls:"+colls);
? ? ? ? return "'module':'collection.....'";
? ? ? ? //http://localhost:8080/SpringMVC_Demo3/coll?colls=1&colls=2&colls=3
? ? ? ? //集合参数传递colls:[1, 2, 3]
? ? }
? ? ?//6.pojo参数:json格式
? ? @RequestMapping("/json")
? ? @ResponseBody
? ? public String json(User user) throws JsonProcessingException {
? ? ? ? ObjectMapper objectMapper = new ObjectMapper();
? ? ? ? String json = objectMapper.writeValueAsString(user);
? ? ? ? System.out.println(json);
? ? ? ? return "'module':'json.....'";
? ? ? ? //http://localhost:8080/SpringMVC_Demo3/json?name=小马哥&age=23&address.province=河南&address.city=商丘
? ? ? ? //{"name":"小马哥","age":23,"address":{"province":"河南","city":"商丘"}}
? ? }
}

5.Address

package com.study.domain;

public class Address {
? ? private String province;
? ? private String city;

? ? public String getProvince() {
? ? ? ? return province;
? ? }

? ? public void setProvince(String province) {
? ? ? ? this.province = province;
? ? }

? ? public String getCity() {
? ? ? ? return city;
? ? }

? ? public void setCity(String city) {
? ? ? ? this.city = city;
? ? }

? ? @Override
? ? public String toString() {
? ? ? ? return "Address{" +
? ? ? ? ? ? ? ? "province='" + province + '\'' +
? ? ? ? ? ? ? ? ", city='" + city + '\'' +
? ? ? ? ? ? ? ? '}';
? ? }
}

6.User

package com.study.domain;

public class User {
? ? private String name;
? ? private int age;

? ? private Address address;

? ? public Address getAddress() {
? ? ? ? return address;
? ? }

? ? public void setAddress(Address address) {
? ? ? ? this.address = address;
? ? }

? ? public String getName() {
? ? ? ? return name;
? ? }

? ? public void setName(String name) {
? ? ? ? this.name = name;
? ? }

? ? public int getAge() {
? ? ? ? return age;
? ? }

? ? public void setAge(int age) {
? ? ? ? this.age = age;
? ? }

? ? @Override
? ? public String toString() {
? ? ? ? return "User{" +
? ? ? ? ? ? ? ? "name='" + name + '\'' +
? ? ? ? ? ? ? ? ", age=" + age +
? ? ? ? ? ? ? ? ", address=" + address +
? ? ? ? ? ? ? ? '}';
? ? }
}

来源:https://blog.csdn.net/qq_43514330/article/details/125578156

标签:SpringMVC,类型参数传递,json传递参数
0
投稿

猜你喜欢

  • java实现小球碰撞功能

    2023-04-05 19:22:41
  • 在Flutter中制作翻转卡片动画的完整实例代码

    2023-06-23 23:31:21
  • Java emoji持久化mysql过程详解

    2023-10-10 23:11:49
  • Spring Boot+Shiro实现一个Http请求的Basic认证

    2022-06-01 22:22:31
  • android使用AsyncTask实现多线程下载实例

    2023-02-02 16:30:04
  • mybatis中resultMap 标签的使用教程

    2022-01-15 11:19:42
  • Java Document生成和解析XML操作

    2021-11-10 13:17:46
  • file.mkdir()、file.mkdirs()和file.createNewFile()的区别

    2023-12-18 10:18:52
  • C#实现基于任务的异步编程模式

    2023-01-08 19:21:15
  • C#算法之整数反转

    2021-09-24 18:36:49
  • Spring 实现excel及pdf导出表格示例

    2023-12-21 04:17:32
  • 一文详解Reactor模型与实现示例

    2023-11-13 12:22:09
  • Android编程之OpenGL绘图技巧总结

    2022-07-25 05:47:55
  • Java 中泛型 T 和 ? 的区别详解

    2022-07-08 00:40:28
  • Java三大特性之多态详解

    2022-11-07 14:24:40
  • Java继承方法重写实现原理及解析

    2021-12-31 16:35:54
  • Spring中校验器(Validator)的深入讲解

    2022-03-05 11:58:35
  • Android BottomSheet实现可拉伸控件

    2023-07-05 15:07:51
  • Java实现分页查询功能

    2023-03-03 14:30:19
  • Android组件必学之TabHost使用方法详解

    2021-11-12 04:56:47
  • asp之家 软件编程 m.aspxhome.com