Use Hibernate4 native API

#Use Hibernate4 native API

In Spring 3.1, a new package named ~.hibernate4 is included( in spring-orm maven dependency). With this new APIs, using Hibernate 4 in Spring projects becomes more easy than before, you are not required to extend the HiberanteDaoSupport class or use HibernateTemplate in your implemnetation class.

  1. Register a DataSource bean

<pre> &lt;jdbc:embedded-database id="dataSource" > &lt;/jdbc:embedded-database> </pre>

  1. Declare Spring specific LocalSessionFactoryBean bean.

<pre> &lt;bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> &lt;property name="dataSource" ref="dataSource" /> &lt;property name="packagesToScan"> &lt;list> &lt;value>com.hantsylabs.example.spring.model&lt;/value> &lt;/list> &lt;/property> &lt;property name="hibernateProperties"> &lt;value> hibernate.dialect=org.hibernate.dialect.HSQLDialect hibernate.format_sql=true hibernate.show_sql=true hibernate.hbm2ddl.auto=create &lt;/value> &lt;/property> &lt;/bean> </pre>

The legacy Spring Hibernate3 integration provides two version of SessionFactoryBean, ~.hibernate3.LocalSessionFactoryBean targets the legacy Hibernate XML mapping configuration, ~.hibernate3.annotation.AnnotationSessionFactoryBean is use for annotation based configuration.

  1. Register a transaction manager.

<pre> &lt;bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"> &lt;property name="sessionFactory" ref="sessionFactory" /> &lt;/bean> </pre>

  1. Now you can inject SessionFactory in your implementation class freely.

<pre> @Repository public class Hibernate4ConferenceDaoImpl implements ConferenceDao { private static final Logger log = LoggerFactory .getLogger(Hibernate4ConferenceDaoImpl.class); @Autowired SessionFactory sessionFactory; private Session session() { return sessionFactory.getCurrentSession(); } @Override public Conference findById(Long id) { return (Conference) session().load(Conference.class, id); } // other methods... } </pre>

It is very simple and stupid. All the codes are based on Hiberante Session APIs now.

NOTE: Hiberante 3 also can be configured like these, I do not demonstrate the steps here.

For the newest project, you can also use the Spring fluent java configuration API for all Spring configurations instead of the XML configuration.

The following is an example of the Java configuration, it is equivalent to the XML format above.

<pre> @Configuration @ComponentScan(basePackages={"com.hantsylabs.example.spring.dao","com.hantsylabs.example.spring.hibernate4"}) public class HibernateConfig { @Bean public DataSource dataSource() { return new EmbeddedDatabaseBuilder().build(); } @Bean public SessionFactory sessionFactory() { LocalSessionFactoryBuilder builder = new LocalSessionFactoryBuilder( dataSource()); builder.scanPackages("com.hantsylabs.example.spring.model") .addProperties(hibernateProperties()); return builder.buildSessionFactory(); } private Properties hibernateProperties() { Properties extraProperties = new Properties(); extraProperties.put("hibernate.format_sql", "true"); extraProperties.put("hibernate.show_sql", "true"); extraProperties.put("hibernate.hbm2ddl.auto", "create"); return extraProperties; } @Bean public PlatformTransactionManager transactionManager() { return new HibernateTransactionManager(sessionFactory()); } } </pre>

转载于:https://my.oschina.net/hantsy/blog/134679

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值