Scripting Java #2:使用Spring容器

來源:互聯網
上載者:User

標籤:scripting   groovy   

前面我們已經知道了怎麼在Java中執行指令碼語言,今天,以Groovy為栗,來看下怎麼在指令碼裡面使用Spring容器。

Bindings

最簡單的方式,直接將ApplicationContext丟到ScriptEngine的上下文環境,也就是Bindings裡面,這樣指令碼裡面就可以直接使用ApplicationContext.getBean來拿到容器裡面的bean了。

import java.util.Random;public class Foo {    private int i;    public int getI() {        return i;    }    public Foo bar() {        System.out.println("hello Foo.");        this.i = new Random().nextInt();        return this;    }}
import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import javax.script.Bindings;import javax.script.ScriptContext;import javax.script.ScriptEngine;import javax.script.ScriptEngineManager;import java.util.HashMap;import java.util.Map;public class Main {    public static void main(String[] args) throws Exception {        ApplicationContext context =                new ClassPathXmlApplicationContext("spring-beans.xml");        Map<String, Object> params = new HashMap<String, Object>();        params.put("sc", context);        ScriptEngineManager sem = new ScriptEngineManager();        ScriptEngine se = sem.getEngineByName("groovy");        Bindings bindings = se.createBindings();        bindings.putAll(params);        se.setBindings(bindings, ScriptContext.ENGINE_SCOPE);        String text =                "foo = sc.getBean(\"foo\"); foo.bar();";        System.out.println(((Foo)se.eval(text)).getI());        bindings.clear();    }}

輸出,

hello Foo.54704882

還有一點說明的是,指令碼裡面最後一條語句的傳回值將會作為ScriptEngine#eval的傳回值。

DRY

如果以上面這種方式,spring bean用多了的話,就會出現很多sc.getBean這樣的重複代碼。偷懶是程式員的美德,為瞭解放生產力,咱們可以再最佳化一下下。
以約定的方式(COC),當變數名是以__也就是兩條底線開頭的,就表示該變數是一個spring bean,底線後面的字元就是bean的名字。然後在丟到指令碼引擎去執行之前,我們只要做一下正則替換就OK了。

public class Main {    public static void main(String[] args) throws Exception {        ApplicationContext context =                new ClassPathXmlApplicationContext("spring-beans.xml");        Map<String, Object> params = new HashMap<String, Object>();        String bindingName_ac = "_springContext";        params.put(bindingName_ac, context);        ScriptEngineManager sem = new ScriptEngineManager();        ScriptEngine se = sem.getEngineByName("groovy");        Bindings bindings = se.createBindings();        bindings.putAll(params);        se.setBindings(bindings, ScriptContext.ENGINE_SCOPE);        String text = "__foo.bar(); foo = __foo; foo.getI();";        String replacedText =                text.replaceAll("__(\\w*)", bindingName_ac+".getBean(\"$1\")");        System.out.println(replacedText);        System.out.println(se.eval(replacedText));        bindings.clear();    }}

輸出如下,

_springContext.getBean("foo").bar(); foo = _springContext.getBean("foo"); foo.getI();hello Foo.-885362561

Binding的範圍只有ScriptContext#ENGINE_SCOPE跟ScriptContext#GLOBAL_SCOPE這兩種,為了防止Binding的相互汙染,執行完指令碼之後還是bindings.clear()保險一點。

Scripting Java #2:使用Spring容器

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.