spring集成Mybatis配置打印sql语句

1.spring.xml

        class="org.mybatis.spring.SqlSessionFactoryBean">
        
        
                     value="classpath:***/****/**/**/**/mapping/*.xml">
        
            
                
                    
                        
                            helperDialect=mysql
                            reasonable=true
                            supportMethodsArguments=true
                            params=count=countSql
                        

                    

                

            

        

    

 

2.mybatis-config.xml


    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"  
    "http://mybatis.org/dtd/mybatis-3-config.dtd">

   
       
       
       
   

    
   



转载于:https://my.oschina.net/wwyxhqc/blog/2253860

你可能感兴趣的:(spring集成Mybatis配置打印sql语句)