Skip to content

Latest commit

 

History

History

springboot-aop-format

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

springboot-aop-format 通过注解的形式去除请求参数首尾空格

目前SpringBoot非常流行,大大简化了Spring整合Mybatis,SpringMVC的配置。但是另外的一件烦心事来了,那就是写接口时候,前后端都需要对String类型的字段做好去首尾空格处理,该项工作简单但是繁琐,虽不费心,但是劳神。在这里写了个注解,在接口进入controller前实现去除字符串去除首尾空格功能。

该示例通过自定义注解+反射对数据的操作

测试

总结

  1. 通过该示例稍做修改 可实现对数据的操作
  2. 对数据的操作多用到了反射

参考链接