spring4.0之八:Groovy DSL
4.0的一个重要特征就是完全支持Groovy,Groovy是Spring主导的一门基于JVM的脚本语言(动态语言)。在spring 2.x,脚本语言通过 Java scripting engine在Spring中得到支持。而在4.0中,Groovy的变得更重要,Groovy可以替换xml和注解用来作为bean配置。
要使用Groovy,首先用maven下载Groovy的包,pom.xml文件中添加:
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- <version>2.1.8</version>
- </dependency>
下面使用xml,java annotation,groovy dsl实现相同功能的不同配置方式比较
XML
- <jdbc:embedded-database id="dataSource" type="H2">
- </jdbc:embedded-database>
- <bean
- class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
- id="entityManagerFactory">
- <property name="persistenceUnitName" value="persistenceUnit" />
- <property name="dataSource" ref="dataSource" />
- <property name="persistenceProviderClass" value="org.hibernate.ejb.HibernatePersistence"></property>
- <property name="packagesToScan">
- <array>
- <value>com.hantsylabs.example.spring.model</value>
- </array>
- </property>
- <property name="jpaProperties">
- <value>
- hibernate.format_sql=true
- hibernate.show_sql=true
- hibernate.hbm2ddl.auto=create
- </value>
- </property>
- </bean>
- <bean class="org.springframework.orm.jpa.JpaTransactionManager"
- id="transactionManager">
- <property name="entityManagerFactory" ref="entityManagerFactory" />
- </bean>
Annotation
- @Configuration
- @ComponentScan(basePackages = { "com.hantsylabs.example.spring.dao","com.hantsylabs.example.spring.jpa" })
- @EnableTransactionManagement(mode=AdviceMode.ASPECTJ)
- public class JpaConfig {
- @Bean
- public DataSource dataSource() {
- return new EmbeddedDatabaseBuilder().setType(EmbeddedDatabaseType.H2).build();
- }
- @Bean
- public LocalContainerEntityManagerFactoryBean entityManagerFactory() {
- LocalContainerEntityManagerFactoryBean emf = new LocalContainerEntityManagerFactoryBean();
- emf.setDataSource(dataSource());
- emf.setPackagesToScan("com.hantsylabs.example.spring.model");
- emf.setPersistenceProvider(new HibernatePersistence());
- emf.setJpaProperties(jpaProperties());
- return emf;
- }
- private Properties jpaProperties() {
- 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 JpaTransactionManager(entityManagerFactory().getObject());
- }
- }
Groovy DSL
- import org.apache.commons.dbcp.BasicDataSource
- import org.springframework.orm.jpa.JpaTransactionManager
- import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean
- import com.hantsylabs.example.spring.jpa.JpaConferenceDaoImpl
- beans {
- dataSource(BasicDataSource) {
- driverClassName = "org.h2.Driver"
- url = "jdbc:h2:mem:spring4-sandbox"
- username = "sa"
- password = ""
- }
- entityManagerFactory(LocalContainerEntityManagerFactoryBean){
- persistenceProviderClass="org.hibernate.ejb.HibernatePersistence"
- dataSource=dataSource
- persistenceUnitName="persistenceUnit"
- packagesToScan=["com.hantsylabs.example.spring.model"]
- jpaProperties=[
- "hibernate.format_sql":"true",
- "hibernate.show_sql":"true",
- "hibernate.hbm2ddl.auto":"create"
- ]
- }
- transactionManager(JpaTransactionManager){
- entityManagerFactory=entityManagerFactory
- }
- conferenceDao(JpaConferenceDaoImpl){
- }
- }
spring4.0之八:Groovy DSL的更多相关文章
- Spring4.0支持Groovy配置
介绍 前一段时间观注了一下Spring4.0的一些特性,当中就有对Groovy配置的支持.因为临时还没有很深入的研究.所以举个小样例来说明一下怎样支持Groovy配置. package shuai.s ...
- Spring4.0系列9-websocket简单应用
http://wiselyman.iteye.com/blog/2003336 ******************************************* Spring4.0系列1-新特性 ...
- Spring-Context之三:使用XML和Groovy DSL配置Bean
在第一讲中显示了如何使用注解配置bean,其实这是Spring3引进的特性,Spring2使用的是XML的方式来配置Bean,那时候漫天的XML文件使得Spring有着配置地狱的称号.Spring也一 ...
- [转]Struts2.3.16.1+Hibernate4.3.4+Spring4.0.2 框架整合
原文地址:http://blog.csdn.net/ycb1689/article/details/22928519 最新版Struts2+Hibernate+Spring整合 目前为止三大框架最新版 ...
- Spring4.0编程式定时任务配置
看过很多定时调度的配置,大多使用XML配置,觉得比较麻烦,也比较老套.这里介绍一种基于spring4.0注解编程式配置定时任务,简单清晰,使用方便.. 至于引入spring相关jar这里不多说,直接切 ...
- Spring4.0.1+Quartz2.2.1实现定时任务调度[亲测可用]
Spring4.0.1+Quartz2.2.1实现定时任务调度[亲测可用] tip:只需要配置xml文件即可 1.第三方依赖包的引入 <properties> <project.bu ...
- [CXF REST标准实战系列] 二、Spring4.0 整合 CXF3.0,实现测试接口
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章Points: 1.介绍RESTful架构 ...
- 项目ITP(六) spring4.0 整合 Quartz 实现动态任务调度
前言 系列文章:[传送门] 项目需求: http://www.cnblogs.com/Alandre/p/3733249.html 上一博客写的是基本调度,后来这只能用于,像每天定个时间 进行数据库备 ...
- 项目ITP(五) spring4.0 整合 Quartz 实现任务调度
前言 系列文章:[传送门] 项目需求: 二维码推送到一体机上,给学生签到扫描用.然后需要的是 上课前20分钟 ,幸好在帮带我的学长做 p2p 的时候,接触过.自然 quartz 是首选.所以我就配置了 ...
随机推荐
- 2018.4.23 git删除已经add的文件
使用 git rm 命令即可,有两种选择, 一种是 git rm --cached "文件路径",不删除物理文件,仅将该文件从缓存中删除: 一种是 git rm --f " ...
- CentOS7安装备忘
======1 下载CentOS镜像文件:https://www.centos.org/download/http://isoredirect.centos.org/centos/7/isos/x86 ...
- hdu5173 How Many Maos Does the Guanxi Worth
#include<bits/stdc++.h> using namespace std; #define INF 0x3f3f3f3f ]; ]; ][]; void dijkstra(i ...
- LeetCode - Max Area of Island
Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) conn ...
- python.numpy.std()计算矩阵标准差
>>> a = np.array([[1, 2], [3, 4]]) >>> np.std(a) # 计算全局标准差 1.1180339887498949 > ...
- itcast-spring
黑马2014 spring后期 ssh整合后期 讲解不清楚 源码讲解太多 spring重新开始 itcast2016版本 介绍 Spring搭建 约束引入注意事项 导入至eclipse:wi ...
- 01python简介
目录 1. Python起源 2. 解释器 3. Python 的设计目标 4. Python 的设计哲学 5. 为什么选择 Python ? 6. Python 特点 7. Pyth ...
- Oracle12C版本安装步骤
一.下载路径 http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html file1,file ...
- easyUI的datagrid每行数据添加操作按钮的方法
今天做项目的时候,想在easyui的datagrid每一列数据后边都加上一个操作按钮,一开始想在后台拼接字符串用JSON传回,但是我测试之后发现这个方法不管用,在网上搜索了一下,整理如下: 其实要加一 ...
- JavaScript模板引擎Template.js使用详解
这篇文章主要为大家详细介绍了JavaScript模板引擎Template.js使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下 template.js 一款 JavaScript 模板引 ...