zoukankan      html  css  js  c++  java
  • Spring与Mybatis整合占位符无法解析问题

    问题:写了一个新的dao接口,进行单元测试时提示:

    Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type 'java.lang.String' to required type 'int' for property 'maxActive'; nested exception is java.lang.NumberFormatException: For input string: "${maxActive}"
    

    原配置datasource时使用了占位符,该提示是在解析占位符${maxActive}时未找到对应的属性。
    单元测试加载properties使用@PropertySource(value = {"classpath*:jdbc.properties"})注解加载配置文件。
    在确认自己properties文件路径是正确的且存在该属性值后,在网上找到相应的资料如https://my.oschina.net/u/1455908/blog/215953说的是在配置mybatis的MapperScannerConigurer时会优先于@PropertySource注解解析占位符,由于占位符未进行解析,直接使用了“${maxActive}”了该字符串作为该配置项的值。也就是报错所说的“${maxActive}”这个字符串无法转化成对应的int数值。

    解决问题

    将配置文件的加载由原先使用注解@PropertySource(value = {"classpath*:jdbc.properties"})改成如下:

    	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    		<property name="locations">
    			<list>
    				<value>classpath:jdbc.properties</value>
    			</list>
    		</property>
    		<property name="ignoreUnresolvablePlaceholders" value="true"></property>
    	</bean>
    

    原先MapperScannerConfigurer的配置没有做修改,如下:

    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <property name="basePackage" value="com.**.dao,com.**.mapper,com.**.test.**.mapper" />
            <!--网上说这个name属性值要配置成这个sqlSessionFactoryBeanName名字,我恰好配的就是这个,所以我这里不需要改-->
            <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
    </bean>
    

    这样该问题解决。但疑问依然存在,为何@PropertySource这个注解没有ignoreUnresolvablePlaceholders这个属性可以进行配置,并且用xml的方式又能正确解析。

  • 相关阅读:
    轻配置 Vim
    PHP 使用 wkhtmltopdf/image 把HTML页面转换成 PDF/image 文件
    使用 Mailgun 实现 带附件的Email 发送功能
    LinkedIn 第三方登录(JavaScript SDK)
    react学习2
    前端面试题
    react学习
    前端面试-字符串-逆序-间隔
    前端文件上传相关知识
    js原型prototype问题
  • 原文地址:https://www.cnblogs.com/frankwin608/p/11870274.html
Copyright © 2011-2022 走看看