Hibernate SQL方言 (hibernate.dialect) Spring配置文件applicationContext.xml

Hibernate SQL方言 (hibernate.dialect)

数据库

hibernate方言

DB2 org.hibernate.dialect.DB2Dialect
DB2 AS/400 org.hibernate.dialect.DB2400Dialect
DB2 OS390 org.hibernate.dialect.DB2390Dialect
PostgreSQL org.hibernate.dialect.PostgreSQLDialect
MySQL org.hibernate.dialect.MySQLDialect
MySQL with InnoDB org.hibernate.dialect.MySQLInnoDBDialect
MySQL with MyISAM org.hibernate.dialect.MySQLMyISAMDialect
Oracle (any version) org.hibernate.dialect.OracleDialect
Oracle 9i/10g org.hibernate.dialect.Oracle9Dialect
Sybase org.hibernate.dialect.SybaseDialect
Sybase Anywhere org.hibernate.dialect.SybaseAnywhereDialect
Microsoft SQL Server org.hibernate.dialect.SQLServerDialect
SAP DB org.hibernate.dialect.SAPDBDialect
Informix org.hibernate.dialect.InformixDialect
HypersonicSQL org.hibernate.dialect.HSQLDialect
Ingres org.hibernate.dialect.IngresDialect
Progress org.hibernate.dialect.ProgressDialect
Mckoi SQL org.hibernate.dialect.MckoiDialect
Interbase org.hibernate.dialect.InterbaseDialect
Pointbase org.hibernate.dialect.PointbaseDialect
FrontBase org.hibernate.dialect.FrontbaseDialect
Firebird org.hibernate.dialect.FirebirdDialect



 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:aop="http://www.springframework.org/schema/aop"
 xmlns:tx="http://www.springframework.org/schema/tx"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
 http://www.springframework.org/schema/tx
 http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
 http://www.springframework.org/schema/aop
 http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

 
   class="com.mchange.v2.c3p0.ComboPooledDataSource">
  
  
  
  
  
  
  
  
  
  
  
  
      value="net.sourceforge.jtds.jdbc.Driver">    name="url"
   value="jdbc:jtds:sqlserver://10.11.68.28:1433;DatabaseName=txDB">
   
   
  
  
  
 

 
   class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  
  
  
  
  
   
    
    org/crazyjava/auction/model/AuctionUser.hbm.xml
    org/crazyjava/auction/model/Bid.hbm.xml
    org/crazyjava/auction/model/Item.hbm.xml
    org/crazyjava/auction/model/Kind.hbm.xml
    org/crazyjava/auction/model/State.hbm.xml
   

  

  
  
   
    
    org.hibernate.dialect.SQLServerDialect
    
    
    update
    
    true
    
    true
   

  

 

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

 
 
  
  
   
   
   
   
  

 

 
  
     expression="execution(* org.crazyjava.auction.service.impl.*Impl.*(..))"/>
  
     pointcut-ref="leeService"/>
 

 
   class="org.springframework.mail.javamail.JavaMailSenderImpl">
  
  
  
   
    true
    25000
   

  

  
  
  
 

 
   class="org.springframework.mail.SimpleMailMessage">
  
  
  
 

 
   class="org.crazyjava.auction.service.impl.AuctionManagerImpl">
  
  
  
  
  
  
  
  
 

 
 
  
  
 

 
   class="org.springframework.scheduling.timer.ScheduledTimerTask">
  
  
  
  
 

 
   class="org.springframework.scheduling.timer.TimerFactoryBean">
  
  
   
    
   

  

 

转载于:https://www.cnblogs.com/wj-wangjun/archive/2009/10/21/1587624.html

你可能感兴趣的:(Hibernate SQL方言 (hibernate.dialect) Spring配置文件applicationContext.xml)