Spring.NET
jimung
雨中的你...
展开
-
Sprinet.NET 学习笔记(1)-MovieFinder
1.通过Spring.NET的IOC容器(IApplicationContext)获取某个类的实例,其IOC容器(IApplicationContext)的配置信息存储在一个标准的.net应用程序配置文件configSections> sectionGroup name="spring"> section name="context" type="Spring.Cont原创 2009-06-07 22:55:00 · 648 阅读 · 0 评论 -
Sprinet.NET 学习笔记(2)-AOPQuickStart
1. Spring.AopQuickStart.Step1.2005 中使用new关键字进行AOP的实现ProxyFactory factory = new ProxyFactory(new ServiceCommand()); factory.AddAdvice(new ConsoleLoggingBeforeAdvice()); factory.AddAdvi原创 2009-06-07 23:59:00 · 782 阅读 · 0 评论 -
Spring.net Could not load type from string value
出现Could not load type from string value 的原因是你配置的这个对象的namespace和你的应用程序的namespace 不同。比如应用程序为testSpringnet而对象的namespace为SpringExample,则会出现以上错误。必须注意配置文件配置的所有类型要在应用程序的namespace中。 参考地址:http://blog.c转载 2009-06-23 16:38:00 · 4346 阅读 · 0 评论