为spring get请求添加自定义的参数处理操作(如下划线转驼峰)

作者:万万没想到0831 时间:2021-12-04 13:01:43 

1.生成自己的注解(为了确定在哪些位置使用)


/**
* 关闭patch delete的model处理,否则会报错
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AliasProcessor {
}

/**
* 处理Get 请求参数的驼峰问题
* @author lw
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ValueFrom {
/**
* 参数名(别名)列表
*/
String[] value();
}

2.实现自己的ServletModelAttributeMethodProcessor


/**
* 为了减少使用 @RequestPath 将get参数封装到实体类中 重写ModelAttributeMethodProcessor
* 注:由于get请求为非raw请求,spring默认使用@ModelArrtribute注解,不会自动将下划线的数据转为驼峰数据
* 所以需要自定义一个处理器,进行该操作 *
* @author lw
*/

public class AliasModelAttributeMethodProcessor extends ServletModelAttributeMethodProcessor {
private ApplicationContext applicationContext;

/**
* 过滤掉patch请求,防止报错
*/
@Override
public boolean supportsParameter(MethodParameter parameter) {
return parameter.getMethodAnnotation(AliasProcessor.class)!=null;
}

public AliasModelAttributeMethodProcessor(ApplicationContext applicationContext) {
super(true);
this.applicationContext=applicationContext;
}

@Override
protected void bindRequestParameters(WebDataBinder binder, NativeWebRequest request) {
AliasDataBinder aliasBinder = new AliasDataBinder(binder.getTarget(), binder.getObjectName());
RequestMappingHandlerAdapter requestMappingHandlerAdapter = this.applicationContext.getBean(RequestMappingHandlerAdapter.class);
requestMappingHandlerAdapter.getWebBindingInitializer().initBinder(aliasBinder);
aliasBinder.bind(request.getNativeRequest(ServletRequest.class));
}
}

3.自己的数据处理类


/**
* 重新数据处理类
* @author lw
*/
public class AliasDataBinder extends ExtendedServletRequestDataBinder {

public AliasDataBinder(Object target, String objectName) {
super(target, objectName);
}

/**
* 复写addBindValues方法
* @param mpvs 这里面存的就是请求参数的key-value对
* @param request 请求本身, 这里没有用到
*/
@Override
protected void addBindValues(MutablePropertyValues mpvs, ServletRequest request) {
super.addBindValues(mpvs, request);
// 处理要绑定参数的对象
Class<?> targetClass = getTarget().getClass();
// 获取对象的所有字段(拿到Test类的字段)
Field[] fields = targetClass.getDeclaredFields();
// 处理所有字段
for (Field field : fields) {
 // 原始字段上的注解
 ValueFrom valueFromAnnotation = field.getAnnotation(ValueFrom.class);
 // 若参数中包含原始字段或者字段没有别名注解, 则跳过该字段
 if (mpvs.contains(field.getName()) || valueFromAnnotation == null) {
 continue;
 }
 // 参数中没有原始字段且字段上有别名注解, 则依次取别名列表中的别名, 在参数中最先找到的别名的值赋值给原始字段
 for (String alias : valueFromAnnotation.value()) {
 // 若参数中包含该别名, 则把别名的值赋值给原始字段
 if (mpvs.contains(alias)) {
  // 给原始字段赋值
  mpvs.add(field.getName(), mpvs.getPropertyValue(alias).getValue());
  // 跳出循环防止取其它别名
  break;
 }
 }
}
}
}

4.注册到spring中


/**
* 为了获得context需要实现ApplicationContextAware接口
* @author lw
*/
@Configuration
public class WebmvcConfig implements ApplicationContextAware {

@Autowired
private RequestMappingHandlerAdapter adapter;

private ApplicationContext applicationContext = null;

@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext=applicationContext;
}

/**
* 将自定义的processor添加到adapter中
*/
@PostConstruct
protected void injectSelfMethodArgumentResolver() {
List<HandlerMethodArgumentResolver> argumentResolvers = new ArrayList<>();
argumentResolvers.add(new AliasModelAttributeMethodProcessor(this.applicationContext));
argumentResolvers.addAll(adapter.getArgumentResolvers());
adapter.setArgumentResolvers(argumentResolvers);
}
}

补充知识:springboot - mybatis - 下划线与驼峰自动转换 mapUnderscoreToCamelCase

以前都是在mybatis.xml中来配置,但是spring boot不想再用xml配置文件。网上搜寻了好久,才找到设置办法:

sessionFactoryBean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);

db配置文件源码:


package com.vip.qa.vop.config;

import com.alibaba.druid.pool.DruidDataSource;
import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import javax.sql.DataSource;
import java.util.Properties;

/**
* Created by danny.yao on 2017/10/25.
*/
@Configuration
@MapperScan(basePackages = VOPDataSourceConfig.PACKAGE, sqlSessionFactoryRef = "vopSqlSessionFactory")
public class VOPDataSourceConfig {
static final String PACKAGE = "com.vip.qa.vop.mapper.vop";

@Value("${vop.datasource.url}")
private String dbUrl;

@Value("${vop.datasource.username}")
private String dbUser;

@Value("${vop.datasource.password}")
private String dbPassword;

@Value("${vop.datasource.driver-class-name}")
private String dbDriver;

@Bean(name = "vopDataSource")
@Qualifier
@Primary
public DataSource vopDataSource() {
DruidDataSource dataSource = new DruidDataSource();
dataSource.setDriverClassName(dbDriver);
dataSource.setUrl(dbUrl);
dataSource.setUsername(dbUser);
dataSource.setPassword(dbPassword);
return dataSource;
}

@Bean(name = "vopSqlSessionFactory")
@Qualifier
@Primary
public SqlSessionFactory vopSqlSessionFactory(@Qualifier("vopDataSource") DataSource scepDataSource) throws Exception {
final SqlSessionFactoryBean sessionFactoryBean = new SqlSessionFactoryBean();
sessionFactoryBean.setDataSource(scepDataSource);

PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
sessionFactoryBean.setMapperLocations(resolver.getResources("classpath:/mybatis/vop/*.xml"));
sessionFactoryBean.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);

return sessionFactoryBean.getObject();
}

// @Bean(name = "vopTransactionManager")
// @Qualifier
// public DataSourceTransactionManager testDataTransactionManager() {
// return new DataSourceTransactionManager(vopDataSource());
// }

}

来源:https://blog.csdn.net/qq_36752632/article/details/90665221

标签:spring,get,参数,下划线,驼峰
0
投稿

猜你喜欢

  • Java C++ 算法leetcode828统计子串中唯一字符乘法原理

    2022-05-09 11:19:18
  • Spring MVC数据绑定方式

    2023-03-18 03:06:55
  • Javaweb会话跟踪技术Cookie和Session的具体使用

    2022-06-24 21:16:33
  • C#实现上传下载图片

    2022-12-15 22:48:22
  • 在Java的Hibernate框架中使用SQL语句的简单介绍

    2022-06-13 15:54:15
  • C#中实现插入、删除Excel分页符的方法

    2022-05-27 02:51:16
  • Java工具类DateUtils实例详解

    2022-08-22 00:40:35
  • 深入理解C♯ 7.0中的Tuple特性

    2023-10-28 09:33:14
  • Spring MVC+FastJson+hibernate-validator整合的完整实例教程

    2021-10-31 13:20:13
  • Android界面一键变灰开发深色适配模式编程示例

    2021-11-25 04:22:25
  • C++实现堆排序实例介绍

    2022-06-05 12:33:54
  • JVM Tomcat性能实战(推荐)

    2022-02-11 22:34:02
  • Java设计模式之工厂模式分析【简单工厂、工厂方法、抽象工厂】

    2021-07-07 21:11:57
  • Java Pattern与Matcher字符串匹配案例详解

    2022-03-25 16:07:19
  • 基于序列化存取实现java对象深度克隆的方法详解

    2021-08-31 07:45:26
  • springboot如何开启一个监听线程执行任务

    2022-01-09 08:44:48
  • Android编程设置屏幕亮度的方法

    2022-07-02 16:40:52
  • 剑指Offer之Java算法习题精讲二叉树与N叉树

    2023-04-22 00:20:42
  • java判断回文数示例分享

    2023-03-20 03:18:22
  • Android选项菜单用法实例分析

    2022-11-02 07:42:44
  • asp之家 软件编程 m.aspxhome.com