- 1、本文档共46页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
S2Container指南
快速上手
最初的一
更
S2Container指南
需要作成的文件
S2Container的定
S2Container的生成
SingletonS2ContainerFactory的使用
S2ContainerFactory的使用
Dependency Injection的方式
构造函数注入
方法函数注入
S2Container定
名称空
实例管理
生存周期
自
组件中利用S2Container
S2ContainerServlet
app.dicon的角色
AOP的适用范
META数据
Request的自
组件的自动登陆
Aspect的自
Meta的自
Hotswap
S2Container标签指南
DOCTYPE
components标签
include标签
component标签
arg标签
property标签
meta标签
initMethod标签
destroyMethod标签
aspect标签
interType标签
description标签
OGNL式
S2Container(Annotation本篇翻)指南
Component
Binding备注码
Aspect备注码
InterType备注码
InitMethod备注码
DestroyMethod备注码
DIContainer练习
快速上手
S2Container,就是Dependency Injection(注:依——译者)(以后略称为DI)的一个DI,就是Interface和Interface来会
最初的一
让我们赶快试一试吧。登场人物如下。
问候语类
返回
问候客户端类
从(字符串)并
问候语应用主类
启
Greeting.java
问侯语的Interface。
package examples.di;
public interface Greeting {
String greet();
}
GreetingImpl.java
package examples.di.impl;
import examples.di.Greeting;
public class GreetingImpl implements Greeting {
public String greet() {
return Hello World!;
}
}
GreetingClient.java
使用Interface。
package examples.di;
public interface GreetingClient {
void execute();
}
GreetingClientImpl.java
使用GreetngImpl(实装),而是通Greeting(Interface)来
package examples.di.impl;
import examples.di.Greeting;
import examples.di.GreetingClient;
public class GreetingClientImpl implements GreetingClient {
private Greeting greeting;
public void setGreeting(Greeting greeting) {
this.greeting = greeting;
}
public void execute() {
System.out.println(greeting.greet());
}
}
机能提供端和使用端的准备都完成了。下面我们就执行一下试试吧。
GreetingMain.java
package examples.di.main;
import examples.di.Greeting;
import examples.di.impl.GreetingClientImpl;
import examples.di.impl.GreetingImpl;
public class GreetingMain {
public static void main(String[] args) {
Greeting greeting = new GreetingImpl();
GreetingClientImpl greetingClient = new GreetingClientImpl();
greetingClient.setGreeting(greeting);
greetingClient.execute();
}
文档评论(0)