當(dāng)使用依賴注入容器時(shí),你首先要向容器中注冊(cè)你的組件,Windsor使用installers(該類型實(shí)現(xiàn)IWindsorInstaller接口)來(lái)封裝和隔離注冊(cè)的邏輯,可以使用Configuration和FromAssembly來(lái)完成工作。
Installers是實(shí)現(xiàn)了IWindsorInstaller接口的簡(jiǎn)單類型,只有一個(gè)Install方法,該方法接收container參數(shù),該參數(shù)使用 fluent registration API方式來(lái)注冊(cè)組件
public class RepositoriesInstaller : IWindsorInstaller { public void Install(IWindsorContainer container, IConfigurationStore store) { container.Register(AllTypes.FromAssemblyNamed("Acme.Crm.Data") .Where(type => type.Name.EndsWith("Repository")) .WithService.DefaultInterfaces() &n