sql >> データベース >  >> RDS >> Mysql

hibernate.cfg.xmlをdataSourceとしてapplicationContext.xmlに構成するにはどうすればよいですか?

    これは、hibernate.cfg.xmlの方法と、それを使用してsessionFactoryを構成する方法のサンプルです。

    cfg.xml

    <!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
    
    <hibernate-configuration>
        <session-factory>
        <property name="connection.datasource">java:comp/env/jdbc/oracle</property>
        <property name="dialect">
            org.hibernate.dialect.Oracle9iDialect
        </property>
    
        .. other config goes here.....
       </session-factory>
    </hibernate-configuration>
    

    これをapplicationContext.xmlに追加します。

    <bean name="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
    
            <property name="configLocation" value="classpath:hibernate.cfg.xml" />
            <property name="mappingResources">
                <list>              
                    <value>...your hbm file location...</value>
                </list>
            </property>
        </bean>
    



    1. MySQLデータベース内のすべてのテーブルを一覧表示する4つの方法

    2. mysqlで対応する毎月の最初の日を取得するにはどうすればよいですか?

    3. pg_escape_stringは正確に何をしますか?

    4. 複数の結果を単一の配列に配置します