驼峰命名法(CamelCase)和下划线命名法(UnderScoreCase)之间的转换

前言:

        在我们项目中前端传来的参数多是首字母小写,如果是两个词,第二个此首字母大写,如userName。类似于我们后端的驼峰命名。

但是如果我们用的原生sql,我们需要把驼峰命名的参数名称转为下划线命名。像select * from user u where u.user_name=.....这时就要把userName转为userName。

我们可以使用Google guava的Guava CaseFormat类进行转换。

1 Guava简介:

        Guava工程包含了若干被Google的 Java项目广泛依赖 的核心库,例如:集合 [collections] 、缓存 [caching] 、原生类型支持 [primitives support] 、并发库 [concurrency libraries] 、通用注解 [common annotations] 、字符串处理 [string processing] 、I/O 等等。 所有这些工具每天都在被Google的工程师应用在产品服务中。

2 使用Guava CaseFormat类进行转换。

CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE,“aaaName”)-->aaa_name

CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "aaa_name")-->aaaName

你可能感兴趣的:(java)