欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

19点睛Spring4.1-GroovyDSL

程序员文章站 2022-03-10 11:21:01
...

19.1 Groovy DSL

  • Spring 4.x的一个新特性是使用Groovy的语言来配置Spring的bean;
  • 这意味着我们构造一个spring的bean又多了一种方式,包括如下:
    • xml配置
    • java config(@Bean)
    • @Component,@Service,@Repository,@Controller系列
    • Groovy DSL

19.2 示例

19.2.1 演示类

package com.wisely.dsl;

public class DemoService {
    private String msg;

    public String sayHello(){
        return "hello "+msg;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

}

19.2.2 使用groovy配置DemoService为bean

  • DemoConfig.groovy
import com.wisely.dsl.DemoService//import要注册为bean的类
//所有的bean的声明放在beans下
beans{
//demoService为bean name,DemoService为类本身,msg = "world"为注入的属性
    demoService(DemoService){
        msg = "world"
    }
}

19.2.3 测试

package com.wisely.dsl;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;

@Configuration
@ImportResource("classpath:com/wisely/dsl/DemoConfig.groovy")
public class Main {

    public static void main(String[] args) {
        AnnotationConfigApplicationContext context =
               new AnnotationConfigApplicationContext("com.wisely.dsl");
        DemoService ds =context.getBean(DemoService.class);
        System.out.println(ds.sayHello());
        context.close();
    }

}

输出结果

Hello World

新书推荐《JavaEE开发的颠覆者: Spring Boot实战》,涵盖Spring 4.x、Spring MVC 4.x、Spring Boot企业开发实战。

 

京东地址:http://item.jd.com/11894632.html

当当地址:http://product.dangdang.com/23926195.html

亚马逊地址:http://www.amazon.cn/图书/dp/B01D5ZBFUK/ref=zg_bsnr_663834051_6 

淘宝地址:https://item.taobao.com/item.htm?id=528426235744&ns=1&abbucket=8#detail

 

 

 

或自己在京东、淘宝、亚马逊、当当、互动出版社搜索自选。

 


19点睛Spring4.1-GroovyDSL
            
    
    博客分类: 点睛Spring4.1