TinyIOC

简介:

在动不动就是SSH的年代,IOC,AOP不是啥新东东。Spring之所以庞大,是因为集成了太多太多的功能。

验证性的开发了一下,仅实现IOC、AOP、子容器简单实践一下。

当然了,必须以HelloWorld示例:

接口:

?
1
2
3
public interface Hello {
     void sayHello(String name);
}

实现:

?
1
2
3
4
5
6
7
@Singleton
@Named ( "abc" )
public class Hello1Impl implements Hello {
     public void sayHello(String name) {
         System.out.println( "Hello:" + name);
     }
}

测试:

?
1
2
3
4
5
6
7
8
public static void main(String[] args) {
         BeanContainer container = BeanContainerFactory.getBeanContainer();
         container.registerClass(Hello1Impl. class );
         Hello hello = container.getBeanByType(Hello. class );
         hello.sayHello( "abc" );
         hello = container.getBeanByName( "abc" );
         hello.sayHello( "def" );
     }

运行结果:

?
1
2
Hello:abc
Hello:def

可以看到根据接口和命名访问都是没有问题的。

再来一个AOP的例子:

先写个拦截器:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@Request
public class InterceptorImpl implements InterceptorBefore, InterceptorAfter, InterceptorException {
     public void after(Object object, Method method, Object... args) {
         System.out.println(String.format( "%s->after\n" , method.getName()));
     }
 
     public void before(Object object, Method method, Object... args) {
         System.out.println(String.format( "%s->before\n" , method.getName()));
     }
 
     public void exception(Object object, Method method, Throwable throwable, Object... args) {
         System.out.println(String.format( "%s->exception:%s\n" , method.getName(), throwable.getMessage()));
     }
}

拦截点有前置,后置及异常,可以实现在一个类上,也可以实现在不同的类上。如果有状态的,则应该配成Prototype或Request类型,否则要考虑线程安全问题。

还是用前面的HelloImpl做测试:

?
1
2
3
4
5
6
7
8
public static void main(String[] args) {
         BeanContainer container = BeanContainerFactory.getBeanContainer();
         container.registerClass(InterceptorImpl. class );
         container.registerClass(HelloImpl. class );
         container.addAop( new AopDefine( ".*HelloImpl" , "sayHello" , ".*" , InterceptorImpl. class .getName()));
         Hello hello = container.getBeanByType(Hello. class );
         hello.sayHello( "abc" );
     }

运行结果:

?
1
2
3
sayHello->before
Hello:abc
sayHello->after

当然了,上面的类注册都是手工添加的,实际使用,会增加一个类扫描器自动添加到容器中的。

再来看一个子容器的类子:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
public static void main(String[] args) {
        BeanContainer container = BeanContainerFactory.getBeanContainer();
        container.registerClass(InterceptorImpl. class );
        container.registerClass(HelloImpl. class );
        container.registerClass(Hello1Impl. class );
        BeanContainer subContainer = BeanContainerFactory.getBeanContainer( "subContainer" );
        subContainer.registerClass(HelloHelperImpl. class );
        subContainer.setParent(container);
        container.addAop( new AopDefine( ".*Hello1Impl" , "sayHello" , ".*" , InterceptorImpl. class .getName()));
        subContainer.addAop( new AopDefine( ".*" , "set.*" , ".*" , InterceptorImpl. class .getName()));
        HelloHelper helloHelper = subContainer.getBeanByType(HelloHelper. class );
        helloHelper.sayHello( "abc" );
     }

在上面的示例中,创建了一个容器,一个子容器,然后把子容器放在父容器下。

?
1
2
3
4
5
public class Hello1Impl implements Hello {
     public void sayHello(String name) {
         System.out.println( "Hello:" + name);
     }
}

HelloHelper

?
1
2
3
4
5
6
7
public interface HelloHelper {
     Hello getHello();
 
     List<Hello> getHelloList();
 
     void sayHello(String name);
}

HelloHelperImpl

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@Singleton
public class HelloHelperImpl implements HelloHelper {
     @Inject
     Hello hello;
     @Inject
     private List<Hello> helloList;
 
     public void setHelloList(List<Hello> helloList) {
         this .helloList = helloList;
     }
 
     public void setHello(Hello hello) {
         this .hello = hello;
     }
 
     public Hello getHello() {
         return <span style= "font-family:Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace;line-height:14.65625px;background-color:#F8F8F8;" >hello</span>;
     }
 
     public List<Hello> getHelloList() {
         return helloList;
     }
 
     public void sayHello(String name) {
         hello.sayHello(name);
     }
}

下面是运行结果:

?
1
2
3
4
5
6
7
setHello->before
setHello->after
setHelloList->before
setHelloList->after
sayHello->before
Hello:abc
sayHello->after

Jar包大小:

16,208 tinyioc-0.0.12-SNAPSHOT.jar

相关文章
|
3天前
|
人工智能 自然语言处理 Shell
深度评测 | 仅用3分钟,百炼调用满血版 Deepseek-r1 API,百万Token免费用,简直不要太爽。
仅用3分钟,百炼调用满血版Deepseek-r1 API,享受百万免费Token。阿里云提供零门槛、快速部署的解决方案,支持云控制台和Cloud Shell两种方式,操作简便。Deepseek-r1满血版在推理能力上表现出色,尤其擅长数学、代码和自然语言处理任务,使用过程中无卡顿,体验丝滑。结合Chatbox工具,用户可轻松掌控模型,提升工作效率。阿里云大模型服务平台百炼不仅速度快,还确保数据安全,值得信赖。
157353 24
深度评测 | 仅用3分钟,百炼调用满血版 Deepseek-r1 API,百万Token免费用,简直不要太爽。
|
5天前
|
人工智能 API 网络安全
用DeepSeek,就在阿里云!四种方式助您快速使用 DeepSeek-R1 满血版!更有内部实战指导!
DeepSeek自发布以来,凭借卓越的技术性能和开源策略迅速吸引了全球关注。DeepSeek-R1作为系列中的佼佼者,在多个基准测试中超越现有顶尖模型,展现了强大的推理能力。然而,由于其爆火及受到黑客攻击,官网使用受限,影响用户体验。为解决这一问题,阿里云提供了多种解决方案。
16966 37
|
13天前
|
机器学习/深度学习 人工智能 自然语言处理
PAI Model Gallery 支持云上一键部署 DeepSeek-V3、DeepSeek-R1 系列模型
DeepSeek 系列模型以其卓越性能在全球范围内备受瞩目,多次评测中表现优异,性能接近甚至超越国际顶尖闭源模型(如OpenAI的GPT-4、Claude-3.5-Sonnet等)。企业用户和开发者可使用 PAI 平台一键部署 DeepSeek 系列模型,实现 DeepSeek 系列模型与现有业务的高效融合。
|
5天前
|
并行计算 PyTorch 算法框架/工具
本地部署DeepSeek模型
要在本地部署DeepSeek模型,需准备Linux(推荐Ubuntu 20.04+)或兼容的Windows/macOS环境,配备NVIDIA GPU(建议RTX 3060+)。安装Python 3.8+、PyTorch/TensorFlow等依赖,并通过官方渠道下载模型文件。配置模型后,编写推理脚本进行测试,可选使用FastAPI服务化部署或Docker容器化。注意资源监控和许可协议。
1310 8
|
13天前
|
人工智能 搜索推荐 Docker
手把手教你使用 Ollama 和 LobeChat 快速本地部署 DeepSeek R1 模型,创建个性化 AI 助手
DeepSeek R1 + LobeChat + Ollama:快速本地部署模型,创建个性化 AI 助手
3416 117
手把手教你使用 Ollama 和 LobeChat 快速本地部署 DeepSeek R1 模型,创建个性化 AI 助手
|
8天前
|
人工智能 自然语言处理 API
DeepSeek全尺寸模型上线阿里云百炼!
阿里云百炼平台近日上线了DeepSeek-V3、DeepSeek-R1及其蒸馏版本等六款全尺寸AI模型,参数量达671B,提供高达100万免费tokens。这些模型在数学、代码、自然语言推理等任务上表现出色,支持灵活调用和经济高效的解决方案,助力开发者和企业加速创新与数字化转型。示例代码展示了如何通过API使用DeepSeek-R1模型进行推理,用户可轻松获取思考过程和最终答案。
|
5天前
|
人工智能 自然语言处理 程序员
如何在通义灵码里用上DeepSeek-V3 和 DeepSeek-R1 满血版671B模型?
除了 AI 程序员的重磅上线外,近期通义灵码能力再升级全新上线模型选择功能,目前已经支持 Qwen2.5、DeepSeek-V3 和 R1系列模型,用户可以在 VSCode 和 JetBrains 里搜索并下载最新通义灵码插件,在输入框里选择模型,即可轻松切换模型。
934 14
|
12天前
|
API 开发工具 Python
阿里云PAI部署DeepSeek及调用
本文介绍如何在阿里云PAI EAS上部署DeepSeek模型,涵盖7B模型的部署、SDK和API调用。7B模型只需一张A10显卡,部署时间约10分钟。文章详细展示了模型信息查看、在线调试及通过OpenAI SDK和Python Requests进行调用的步骤,并附有测试结果和参考文档链接。
1938 9
阿里云PAI部署DeepSeek及调用
|
9天前
|
人工智能 数据可视化 Linux
【保姆级教程】3步搞定DeepSeek本地部署
DeepSeek在2025年春节期间突然爆火出圈。在目前DeepSeek的网站中,极不稳定,总是服务器繁忙,这时候本地部署就可以有效规避问题。本文以最浅显易懂的方式带读者一起完成DeepSeek-r1大模型的本地部署。
|
12天前
|
缓存 自然语言处理 安全
快速调用 Deepseek API!【超详细教程】
Deepseek 强大的功能,在本教程中,将指导您如何获取 DeepSeek API 密钥,并演示如何使用该密钥调用 DeepSeek API 以进行调试。

热门文章

最新文章