Spring+Junit4+maven執行測試類報Failed to load ApplicationContext
阿新 • • 發佈:2019-01-31
1.檢查spring配置檔案路徑
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration ("classpath*:application-context.xml")
public class UserServiceTest extends AbstractJUnit4SpringContextTests{
————————————————–pass————————————–
2.檢查pom.xml依賴配置和專案jar包
————————————————–pass————————————–
3.檢查配置檔案內容
將aop和tx節點註釋掉測試成功
————————————————–pass————————————–
4.檢查aop和tx節點配置資訊
————————————————–pass————————————–
5.最後發現xsi:schemaLocation的aop和tx的uri引用未給出
新增uri引用資訊,放開aop和tx節點註釋,執行測試成功
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org /schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd"
————————————————–pass————————————–