spring与mybatis项目出现 java.lang.NumberFormatException: For input string: "${jdbc.ma

阅读更多
    具体说来就是,myabatis使用MapperScannerConfigurer扫描模式后他会优先于PropertyPlaceholderConfigurer执行,所以这个时候,${jdbc.maxActive }
 
    还没有被properties文件里面的值所替换,所以出现TypeMismatchException,然后就异常了。正确配置如下
 
 
 mSqlSessionFactory"  class="org.mybatis.spring.SqlSessionFactoryBean"> 
       
     
 
 
 
  
     
     
      sqlSessionFactoryBeanName"  value=" mSqlSessionFactory" />
 

你可能感兴趣的:(springmv,mybatis)