Gratry-1.1.0 发布, Spring Aop 之外的新选择

栏目: Java · 发布时间: 6年前

内容简介:简介:Gadtry 是一个构建于java8之上的工具库, 涵盖了Gadtry 1.1.0 稳定版已发布,主要新增Aop功能,特点如下:

简介:

Gadtry 是一个构建于 java 8之上的 工具 库, 涵盖了 Ioc Aop exec graph 等等工具库,几乎涵盖了日常开发中非常多工具类,当然它还在不断丰富中.

Gadtry 1.1.0 稳定版已发布,主要新增Aop功能,特点如下:

*  新增完备 Aop功能, 支持接口代理和非接口类代理(非final)

* 支持和Gadtry-Ioc容器进行结合代理

* 支持非容器场景代理(注意应对 没有使用任何ioc容器的项目)

* 已支持Spring-Aop所有概念和语义

演示:

*  结合Gadtry-Ioc:

IocFactory iocFactory = GadTry.create(binder -> {
            binder.bind(Map.class).byCreator(HashMap::new).withSingle();
            binder.bind(HashSet.class).by(HashSet.class).withSingle();
        }).aop(binder -> {
            binder.bind("point1")
                    .withPackage("com.github.harbby")
                    //.subclassOf(Map.class)
                    .classAnnotated()
                    .classes(HashMap.class, HashSet.class)
                    .whereMethod(methodInfo -> methodInfo.getName().startsWith("add"))
                    .build()
                    .before((info) -> {
                        Assert.assertEquals("add", info.getName());
                        System.out.println("before1");
                    })
                    .after(() -> {
                        Assert.assertTrue(true);
                        System.out.println("after2");
                    });
        }).initialize();

        Set set = iocFactory.getInstance(HashSet.class);

更多细节请查询:  https://gitee.com/mirrors/Gadtry


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

About Face 2.0

About Face 2.0

Alan Cooper、Robert M. Reimann / Wiley / March 17, 2003 / USD 35.00

First published seven years ago-just before the World Wide Web exploded into dominance in the software world-About Face rapidly became a bestseller. While the ideas and principles in the original book......一起来看看 《About Face 2.0》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具