我的spring xml文件中有这个:
<object type="Test.Web.Utilities.TestClass, Test.Web" singleton="false" id="TestClass">
<property name="TestService" ref="TestService"/>
</object>
在 TestClass 我有这个:
public ITestService TestService { get; set; }
还有这个:
public void TestMethod()
{
var x = TestService.ExampleMethod();
}
接下来,在我的控制器中,我有这个:
TestClass t = new TestClass();
t.TestMethod();
但是,我似乎没有让这个工作。控制器上其他与弹簧相关的东西效果很好。
任何想法我怎样才能让它工作?
编辑:忘记添加,我得到的错误是 NullReferenceException