SSH整合后console显示sql语句

http://blog.csdn.net/wzy126126/article/details/5745251
在applicationContext.xml中配置

http://www.springframework.org/dtd/spring-beans.dtd ">

    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
  abstract="false" singleton="true" lazy-init="default"
  autowire="default" dependency-check="default">
  
   classpath:init.properties
  

 

 
    class="com.mchange.v2.c3p0.ComboPooledDataSource"  destroy-method="close" dependency-check="default">
  
   ${dataSource.driver}
  

  
   ${dataSource.jdbcUrl}
  

  
   ${dataSource.user}
  

  
   ${dataSource.password}
  

  
  
   ${dataSource.acquireIncrement}
  

  
   ${dataSource.minPoolSize}
  

  
   ${dataSource.maxPoolSize}
  

  
   ${dataSource.maxIdleTime}
  

  
   ${dataSource.idleConnectionTestPeriod}
  

 
  
 

    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  
   
  

  
   
    
     org.hibernate.dialect.MySQLDialect
    

    
    true

   

  
  
   
    com/vo/Customer.hbm.xml
    com/vo/Engineer.hbm.xml
    com/vo/Repairplant.hbm.xml
    com/vo/Product.hbm.xml
    com/vo/Archives.hbm.xml
    com/vo/Account.hbm.xml
    com/vo/User.hbm.xml

  

  
  
 
  
   
  

 

 
  
   
  

 

 
  
   
  

 

 
  
   
  

 

 
  
   
  

 

 
  
   
  

 

 
 
  
   
  

 

 
 
这样就可以在调试的时候显示sql语句了.

你可能感兴趣的:(Android)