本文整理汇总了C#中Spring.Objects.Factory.Support.DefaultListableObjectFactory.AutowireObjectProperties方法的典型用法代码示例。如果您正苦于以下问题:C# DefaultListableObjectFactory.AutowireObjectProperties方法的具体用法?C# DefaultListableObjectFactory.AutowireObjectProperties怎么用?C# DefaultListableObjectFactory.AutowireObjectProperties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Spring.Objects.Factory.Support.DefaultListableObjectFactory
的用法示例。
在下文中一共展示了DefaultListableObjectFactory.AutowireObjectProperties方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AutowireExistingObjectByTypeWithDependencyCheck
public void AutowireExistingObjectByTypeWithDependencyCheck()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
DependenciesObject existingObj = new DependenciesObject();
lof.AutowireObjectProperties(existingObj, AutoWiringMode.ByType, true);
}
示例2: AutowireExistingObjectByTypeWithNoDependencyCheck
public void AutowireExistingObjectByTypeWithNoDependencyCheck()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
DependenciesObject existingObj = new DependenciesObject();
lof.AutowireObjectProperties(existingObj, AutoWiringMode.ByType, false);
Assert.IsNull(existingObj.Spouse);
}
示例3: AutowireExistingObjectByType
public void AutowireExistingObjectByType()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
RootObjectDefinition rod = new RootObjectDefinition(typeof(TestObject));
lof.RegisterObjectDefinition("test", rod);
DependenciesObject existingObj = new DependenciesObject();
lof.AutowireObjectProperties(existingObj, AutoWiringMode.ByType, true);
TestObject test = (TestObject)lof.GetObject("test");
Assert.AreEqual(existingObj.Spouse, test);
}
示例4: AutowireByTypeWithInvalidAutowireMode
public void AutowireByTypeWithInvalidAutowireMode()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
DependenciesObject obj = new DependenciesObject();
lof.AutowireObjectProperties(obj, AutoWiringMode.Constructor, true);
}
示例5: AutowireExistingObjectByNameWithNoDependencyCheck
public void AutowireExistingObjectByNameWithNoDependencyCheck()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
RootObjectDefinition rod = new RootObjectDefinition(typeof(TestObject));
lof.RegisterObjectDefinition("Spous", rod);
DependenciesObject existingObj = new DependenciesObject();
lof.AutowireObjectProperties(existingObj, AutoWiringMode.ByName, false);
Assert.IsNull(existingObj.Spouse);
}
示例6: AutowireExistingObjectByNameWithDependencyCheck
public void AutowireExistingObjectByNameWithDependencyCheck()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
RootObjectDefinition rod = new RootObjectDefinition(typeof(TestObject));
lof.RegisterObjectDefinition("Spous", rod);
DependenciesObject existingObj = new DependenciesObject();
lof.AutowireObjectProperties(existingObj, AutoWiringMode.ByName, true);
Assert.Fail("Should have thrown UnsatisfiedDependencyException");
}
示例7: AutowireExistingObjectByName
public void AutowireExistingObjectByName()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
RootObjectDefinition rod = new RootObjectDefinition(typeof(TestObject));
lof.RegisterObjectDefinition("Spouse", rod);
DependenciesObject existingObj = new DependenciesObject();
lof.AutowireObjectProperties(existingObj, AutoWiringMode.ByName, true);
TestObject spouse = (TestObject)lof.GetObject("Spouse");
Assert.AreEqual(existingObj.Spouse, spouse);
Assert.IsTrue(ObjectFactoryUtils.ObjectOfType(lof, typeof(TestObject)) == spouse);
}
示例8: AutowireExistingObjectByTypeWithDependencyCheck
public void AutowireExistingObjectByTypeWithDependencyCheck()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
DependenciesObject existingObj = new DependenciesObject();
Assert.Throws<UnsatisfiedDependencyException>(() => lof.AutowireObjectProperties(existingObj, AutoWiringMode.ByType, true));
}
示例9: AutowireByTypeWithInvalidAutowireMode
public void AutowireByTypeWithInvalidAutowireMode()
{
DefaultListableObjectFactory lof = new DefaultListableObjectFactory();
DependenciesObject obj = new DependenciesObject();
Assert.Throws<ArgumentException>(() => lof.AutowireObjectProperties(obj, AutoWiringMode.Constructor, true));
}