java怎么拦截某个对象
328
2023-04-25
Java8通过Function获取字段名的步骤
摘要:java8通过Function获取字段名,解决硬编码,效果类似于mybatis-plus的LambdaQueryWrapper。
本文总共三个步骤:
1、使Function获取序列化能力;
2、通过SFunction获取字段名;
3、建一些业务代码进行测试;
使Function获取序列化能力
import java.io.Serializable;
import java.util.function.Function;
/**
* 使Function获取序列化能力
*/
@FunctionalInterface
public interface SFunction
}
通过SFunction获取字段名
import java.lang.invoke.SerializedLambda;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class ColumnUtil {
public static
// 从function取出序列化方法
Method writeReplaceMethod;
try http://{
writeReplaceMethod = fn.getClass().getDeclaredMethod("writeReplace");
} catch (NoSuchMethodException e) {
throw new RuntimeException(e);
}
// 从序列化方法取出序列化的lambda信息
boolean isAccessible = writeReplaceMethod.isAccessible();
writeReplaceMethod.setAccessible(true);
SerializedLambda serializedLambda;
try {
serializedLambda = (SerializedLambda) writeReplaceMethod.invoke(fn);
} catch (IllegalAccessException | InvocationTargetException e) {
throw new RuntimeException(e);
}
writeReplaceMethod.setAccessible(isAccessible);
// 从lambda信息取出method、field、class等
String fieldName = serializedLambda.getImplMethodName().substring("get".length());
fieldName = fieldName.replaceFirst(fieldName.charAt(0) + "", (fieldName.charAt(0) + "").toLowxquWAJerCase());
Field field;
try {
field = Class.forName(serializedLambda.getImplClass().replace("/", ".")).getDeclaredField(fieldName);
} catch (ClassNotFoundException | NoSuchFieldException e) {
throw new RuntimeException(e);
}
// 从field取出字段名,可以根据实际情况调整
TableField tableField = field.getAnnotation(TableField.class);
if (tableField != null && tableField.value().length() > 0) {
return tableField.value();
} else {
return fieldName.replaceAll("[A-Z]", "_$0").toLowerCase();
}
}
}
建一些业务代码进行测试
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 字段名注解。测试用
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface TableField {
http://String value() default "";
}
import java.io.Serializable;
/**
* 用户实体类。测试用
*/
public class User implements Serializable {
xquWAJ private String loginName;
@TableField("nick")
private String nickName;
public String getLoginName() {
return loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName;
}
}
/**
* 测试用
*/
public class Test {
public static void main(String[] args) {
System.out.println("字段名:" + ColumnUtil.getName(User::getLoginName));
System.out.println("字段名:" + ColumnUtil.getName(User::getNickName));
}
}
运行结果:
字段名:login_name
字段名:nick
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~