3
我想考驗我的春天代碼:春JUnit測試
@ContextConfiguration(locations = { "/applicationContext.xml" })
@Transactional()
public class Test {
@Autowired
MyDao dao;
@org.junit.Test
@Rollback(false)
public void testSomething() throws Exception {
MyEntity e = new MyEntity();
dao.create(e);
}
}
運行與Eclipse這個測試(作爲JUnit測試)只是給出了一個空指針的異常。
我做錯了什麼?謝謝!
謝謝
@ContextConfiguration
和@Transcational
!而已! –@UdoR。我很樂意提供幫助 – t777