GAE の制限により、Spring セッション ファクトリを使用できません。
<bean id="mySessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="myDataSource" />
<property name="annotatedClasses">
<list>
<value>it.trew.prove.model.beans.Scadenza</value>
<value>it.trew.prove.model.beans.Fornitore</value>
<value>it.trew.prove.model.beans.Societa</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">create</prop>
<!-- <prop key="hibernate.hbm2ddl.import_files">/setup.sql</prop> -->
</props>
</property>
</bean>
興味がある場合は、私の他の質問を参照してください: Spring Autowiring が GAE で動作しなくなりました
今、org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean なしでセッション ファクトリを作成したい
休止状態のものだけを使用して、純粋なセッション ファクトリ Bean を構成するにはどうすればよいですか?