<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop "
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd ">
<import resource="classpath*:spring/applicationContext.xml"/>
<import resource="classpath*:spring/serviceContext.xml"/>
</beans>
使用 "classpath*: 如果没有* 不知道为何加载不进来.
另外测试方面的问题,dao层不能注入进来.
因为事务拦截在manager层,所有直接使用dao测试不行.
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop "
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd ">
<import resource="classpath*:spring/applicationContext.xml"/>
<import resource="classpath*:spring/serviceContext.xml"/>
</beans>
使用 "classpath*: 如果没有* 不知道为何加载不进来.
另外测试方面的问题,dao层不能注入进来.
因为事务拦截在manager层,所有直接使用dao测试不行.
Spring配置文件加载与测试问题
本文探讨了Spring配置文件中使用classpath*:的问题,并讨论了如何正确加载配置文件。此外,还提到了在进行单元测试时遇到的DAO层注入失败的情况,分析可能的原因在于事务管理配置仅作用于manager层。
9659

被折叠的 条评论
为什么被折叠?



