Spring+mybatis加载外部文件时加载失败问题

本文探讨了在Spring与Mybatis整合时遇到的外部属性文件加载失败问题。问题根源在于老版本Spring中,sqlSessionFactory在数据源属性未替换前就被初始化,导致属性值无法正确加载。解决方案是使用sqlSessionFactoryBeanName,确保在Spring初始化完成后构造该类,从而成功读取属性文件。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

直接上配置文件

<?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:tx="http://www.springframework.org/schema/tx"
	xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
	xsi:schemaLocation="http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring-1.2.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">


	<!-- 配置spring扫描的包 -->
	<context:component-scan base-package="com.future.hist">
		<context:exclude-filter type="annotation"
			expression="org.springframework.stereotype.Controller" />
		<context:exclude-filter type="annotation"
			expression="org.springframework.web.bind.annotation.ControllerAdvice" />
	</context:component-scan>

	<!-- 引入外部资源文件 -->
	<context:property-placeholder location="classpath:db.properties" /> 
	
	<!-- 配置数据源,整合其他框架 -->
	<!-- 使用的数据源是 :DriverManagerDataSource -->

	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
		destroy-method="close">
		<property name="user" value="${user}"></property>
		<property name="password" value="${password}"></property>
		<property name="jdbcUrl" value="${jdbcUrl}"></property>
		<property name="driverClass" value="${driverClass}"></property>


		<property name="maxPoolSize" value="50"></property>
		<property name="minPoolSize" value="10"></property>
		<property name="initialPoolSize" value="10"></property>
		<property name="maxIdleTime" value="25000"></property>
		<property name="acquireIncrement" value="1"></property>
		<property name="acquireRetryAttempts" value="30"></property>
		<property name="acquireRetryDelay" value="1000"></property>
		<property name="testConnectionOnCheckin" value="true"></property>
		<property name="idleConnectionTestPeriod" value="18000"></property>
		<property name="checkoutTimeout" value="5000"></property>
		<property name="automaticTestTable" value="t_c3p0"></property>
	</bean>

	<!-- 2. mybatis的SqlSession的工厂: SqlSessionFactoryBean dataSource : 引用数据源 
		/ typeAliasesPackage : 指定实体类的包名,自动将实体类简单类名映射成为别名 -->
	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>
		<property name="typeAliasesPackage" value="com.future.hist.domain"></property>
	</bean>

	<!-- 3. mybatis自动扫描加载Sql映射文件 : MapperScannerConfigurer sqlSessionFactory / basePackage : 指定sql映射文件/接口所在的包(自动扫描) -->
       <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
                <property name="basePackage" value="com.future.hist.persistence"></property>
                <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
        </bean>

	<!-- 4. 事务管理 : DataSourceTransactionManager -->
	<bean id="txManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	<!-- 5. 使用声明式事务 -->
	<tx:annotation-driven transaction-manager="txManager" />
</beans>
db.propertis文件

user = root
password = root
jdbcUrl = jdbc:mysql:///oa?useUnicode=true&characterEncoding=UTF-8
driverClass = com.mysql.jdbc.Driver
这样加载配置文件时总是失败,后来网上搜了好长时间,但是都不对,今天一个偶然的机会搜到了,说的是在配置第3步自动扫描加载sql映射文件时必须将sqlSessionFactory换成sqlSessionFactoryBeanName,ref改成value才可以将文件加载上去。

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
	<property name="basePackage" value="com.future.hist.persistence"></property>
	<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
</bean>

这样做是因为sqlSessionFactory是老版本的spring。它是是数据源的工厂类引用,这样初始化mybatis时,属性文件的值还没被替换,就开始构造这个sqlSessionFactory类了,所以导致属性值加载失败。而sqlSessionFactoryBeanName没有直接注入sqlSessionFactory,而是等spring初始化完成后,再构造该类。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值