在Unity中替代Spring的init-method和destroy-method属性
我在一个基于 Java 的大型项目上工作了大约一年,该项目使用 Struts2 进行 MVC 支持,使用 Spring 进行 DI,现在,由于公司管理层的转变,我必须将整个项目迁移到 .NET。
我开始研究 Unity 和 MVC2,由于我必须复制以前的解决方案,我想知道 Unity 是否有类似于 Spring 的 init-method 和 destroy-method 方法的机制。 下面是使用这些方法的 Spring bean 示例:
I worked for about a year on a big Java based project which uses Struts2 for MVC support and Spring for DI, and now, because of a shift in company's management I have to migrate my whole project to .NET.
I started poking around with Unity and MVC2, and since I have to replicate my previous solution, I was wondering does Unity have a mechanism similar to Spring's init-method and destroy-method methods.
Here's an example of a Spring bean that uses these methods:
<bean id="connectionService" class="com.dms.webclient.service.impl.ConnectionServiceImpl"
init-method="init" destroy-method="destroy"/>`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用方法调用注入。例如:
或者,在配置文件:
AFAIK中,没有“销毁”方法。而且,我想知道您真正需要它的哪种场景。
You can use Method Call Injection. For example:
or, in configuration file:
AFAIK, there is no "destroy" method. And, i wonder which scenario you really need it.