SSM框架中继承了接口的类让Spring管理为什么不能自动注入 20
如图1,编写了一个service接口;如图2,实现了service接口并用注释的方法让Spring管理;如图3,在controller用@Autowired注入如图4,部...
如图1,编写了一个service接口;如图2,实现了service接口并用注释的方法让Spring管理;如图3,在controller用@Autowired注入如图4,部署到TomCat后报错,意思是容器中有两个是CustomerService类的bean但是如果不用注释的方法,用xml配置(如图5)就不会出现这个问题(也是只用属性注入的方法)
展开
展开全部
<context:component-scan base-package="com.jsu.service,com.jsu.util"/>
<!--配置session工厂-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="mapperLocations" value="classpath:mybatis/*Mapper.xml"/>
<property name="typeAliasesPackage" value="com.jsu.mapper"/>
</bean>
<!--扫描mapper代理对象-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!--设置扫描mapper的包-->
<property name="basePackage" value="com.jsu.mapper"/>
<!-- mapper接口需要用到sqlSessionFactory 如果上下文环境只有一个数据源 则不需要配置 -->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
</bean>
<!--配置通知-->
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="get*" read-only="true"/>
<tx:method name="select*" read-only="true"/>
<tx:method name="insert*" propagation="REQUIRED"/>
<tx:method name="update×" propagation="REQUIRED
<!--配置session工厂-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="mapperLocations" value="classpath:mybatis/*Mapper.xml"/>
<property name="typeAliasesPackage" value="com.jsu.mapper"/>
</bean>
<!--扫描mapper代理对象-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!--设置扫描mapper的包-->
<property name="basePackage" value="com.jsu.mapper"/>
<!-- mapper接口需要用到sqlSessionFactory 如果上下文环境只有一个数据源 则不需要配置 -->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
</bean>
<!--配置通知-->
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<tx:method name="get*" read-only="true"/>
<tx:method name="select*" read-only="true"/>
<tx:method name="insert*" propagation="REQUIRED"/>
<tx:method name="update×" propagation="REQUIRED
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询