Python 官方文档:入门教程 => 点击学习
目录lambda表达式实现切面功能定义一个函数式接口创建两个实现类客户端缺点背景:最近项目中涉及到自定义线程池中子线程获取父线程的traceId,这个数据的传递过程可以用lamdba
背景:最近项目中涉及到自定义线程池中子线程获取父线程的traceId,这个数据的传递过程可以用lamdba表达式进行封装实现的。这让我想到spring容器的三级缓存。其中的一个缓存singletonFactories就是存放的lambda表达式的。
// 缓存的声明
private final Map<String, ObjectFactory<?>> singletonFactories = new HashMap<>(16);
// lambda作为参数调用addSingletonFactory方法
this.addSingletonFactory(beanName, () -> {
return this.getEarlyBeanReference(beanName, mbd, bean);
});
// addSingletonFactory方法
protected void addSingletonFactory(String beanName, ObjectFactory<?> singletonFactory) {
Assert.notNull(singletonFactory, "Singleton factory must not be null");
synchronized(this.singletonObjects) {
if (!this.singletonObjects.containsKey(beanName)) {
// 缓存中添加lambda
this.singletonFactories.put(beanName, singletonFactory);
this.earlySingletonObjects.remove(beanName);
this.reGISteredSingletons.add(beanName);
}
}
}
一些业务逻辑可以通过lambda表达式进行封装,就可以当作一个参数一样进行传递,然后在需要的时候进行执行。但是它的强大并不止于此,还可以当作aop切面进行使用。通过一个demo进行展示
@FunctionalInterface
public interface DemoInterface {
void Demo();
}
public class DemoSonOne implements DemoInterface{
public DemoSonOne(Integer age) {
this.age = age;
}
private Integer age;
public Integer getAge() {
return age;
}
// 重写接口
@Override
public void Demo() {
System.out.println("I'm DemoSonOne, My age is " + age);
}
}
public class DemoSonTwo implements DemoInterface{
public DemoSonTwo(String name) {
this.name = name;
}
private String name;
public String getName() {
return name;
}
// 实现接口
@Override
public void Demo() {
System.out.println("I'm DemoSonOne, My name is " + name);
}
}
public class DemoMain { // lambda表达式进行封装 public static DemoInterface wrap(final DemoInterface demoInterface){ return () -> { System.out.println("Demo方法要执行了"); demoInterface.Demo(); System.out.println("Demo方法要执行完了"); }; } public static void main(String[] args) { DemoSonOne demoSonOne = new DemoSonOne(18); DemoSonTwo demoSonTwo = new DemoSonTwo("haha"); demoSonOne.Demo(); System.out.println("-----------------------"); demoSonTwo.Demo(); System.out.println("-----------------------"); DemoInterface wrapOne = wrap(demoSonOne); DemoInterface wrapTwo = wrap(demoSonTwo); wrapOne.Demo(); System.out.println("-----------------------"); wrapTwo.Demo(); }}public class DemoMain {
// lambda表达式进行封装
public static DemoInterface wrap(final DemoInterface demoInterface){
return () -> {
System.out.println("Demo方法要执行了");
demoInterface.Demo();
System.out.println("Demo方法要执行完了");
};
}
public static void main(String[] args) {
DemoSonOne demoSonOne = new DemoSonOne(18);
DemoSonTwo demoSonTwo = new DemoSonTwo("haha");
demoSonOne.Demo();
System.out.println("-----------------------");
demoSonTwo.Demo();
System.out.println("-----------------------");
DemoInterface wrapOne = wrap(demoSonOne);
DemoInterface wrapTwo = wrap(demoSonTwo);
wrapOne.Demo();
System.out.println("-----------------------");
wrapTwo.Demo();
}
}
执行结果
执行结果如下,可以看到经过wrap方法封装后的DemoInterface接口对象,执行过程都会走lamdba中的代码。给人一种aop的感觉
经过wrap方法返回的对象都是DemoInterface类型的,它是接口类型,如果在某种特定的情况下能够确定它是由某个子类类型实力化得到的,想要强转回去,然后获取子类独有的属性,这种情况下会报错。
public static void main(String[] args) {
DemoSonOne demoSonOne = new DemoSonOne(18);
// 经过lambda封装,得到接口类型
DemoInterface wrapOne = wrap(demoSonOne);
wrapOne.Demo();
// 由接口类型转换为现实类类型
DemoSonOne wrapOne1 = (DemoSonOne) wrapOne;
Integer age = wrapOne1.getAge();
System.out.println(age);
}
错误结果显示如下:
Exception in thread "main" java.lang.ClassCastException: class functionInterface.DemoMain$$Lambda$14/0x0000000800066840 cannot be cast to class functionInterface.DemoSonOne (functionInterface.DemoMain$$Lambda$14/0x0000000800066840 and functionInterface.DemoSonOne are in unnamed module of loader 'app')
at functionInterface.DemoMain.main(DemoMain.java:26)
由此可见该方法进行封装有好处,也有坏处,所以要谨慎使用。
到此这篇关于Java中lambda表达式实现aop切面功能的文章就介绍到这了,更多相关lambda表达式实现aop切面内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: Java中lambda表达式实现aop切面功能
本文链接: https://lsjlt.com/news/139783.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0