StringTemplate 模板引擎Java

StringTemplate是一种基于java的模板引擎库,类似于velocity,FreeMarker。可以用于生成源代码、web页面、电子邮件等多种样式的文本。选择StringTemplate的原因是因为相较于其他的模板引擎,他的功能更加强大。

使用

1、使用maven添加依赖或从http://www.stringtemplate.org下载

<dependency>
  <groupId>org.antlrgroupId>
  <artifactId>ST4artifactId>
  <version>4.0.8version>
  <scope>compilescope>
dependency>

2、demo

2.1示例:
import org.stringtemplate.v4.ST;
...

       ST hello = new ST("Hello, ");
       hello.add("name", "World");
       System.out.println(hello.render());

       或者
        
     ST hello = new ST("Hello, ");
     hello.add("model", new TemplateModel());
     System.out.println(hello.render());


输出:

Hello, World
2.2 条件表达式

ST支持条件表达式,简单实例如下:

       // 第二个和第三个参数用于定义表达式的头尾字符
       ST hello = new ST("Hello, $if(name)$$name$$endif$", '$', '$');
       hello.add("name", "risk");
       System.out.println(hello.render());

输出:

Hello, risk

2.3 模板组

StringTemplate的一个强大的功能是模板功能,模板功能有点类似函数的使用方式,模板定义如下:

templateName(args, agrs, ...) ::= "模板内容"

上述模板方式支持单行内容,这里展示一个简单的示例:

        STGroup stg = new STGroupString("sqlTemplate(columns,condition) ::= \"select  from table where 1=1 and  \"");
        ST sqlST = stg.getInstanceOf("sqlTemplate");
        sqlST.add("columns","order_id");
        sqlST.add("condition", "dt='2017-04-04'");
        System.out.print(sqlST.render());

输出:

from select order_id from table where 1=1 and dt='2017-04-04' 

2.4 对于模板定义,同时支持如下两种方式:

  • 1、模板内容为多行
templateName(args, agrs, ...) ::= <<
模板内容
模板内容
>>
  • 2、模板内容多行,且忽略换行符和缩进
templateName(args, agrs, ...) ::= <%
模板内容
模板内容
%>

因此可以将上例中的sql写成如下方式更好:

        STGroup stg = new STGroupString("sqlTemplate(columns,condition) ::= <",">
from table
where 1=1 <if(condition)>and 
>>

这里将 修改为 这样可以在列名中插入多个列名,并以","分割。
java代码如下:

        STGroup stg = new STGroupFile("dataExtractSql.stg");
        ST sqlST = stg.getInstanceOf("sqlTemplate");

        List<String> columnList = new LinkedList<String>();
        columnList.add("order_id");
        columnList.add("price");
        columnList.add("phone");
        sqlST.add("columns", columnList);
        sqlST.add("condition", "dt='2017-04-04'");
        System.out.print(sqlST.render());

输出:

select order_id,price,phone
from table
where 1=1 and dt='2017-04-04'

2.5模板组的简单使用

当一个模板比较复杂时,可以拆分成多个模板,以模板组的方式使用更加方便。
模板文件dataExtarctSql.stg如下:

/**模板外注释sql模板*/
sqlTemplate(columns,condition,joinKey,tableName,childColumns,childJoinKey,childTableName,childCdtion)
::= <<

select ",">,};separator=",">
from  as t1 left join () as t2 on t1.=t2.
where 1=1 <if(condition)>and <endif>
>>

/**模板外注释sql子模板*/

childSqlTemplate(childColumns, childCdtion)
::= <<
select ",">
from 
where 1=1 <if(childCdtion)>and <endif>
>>

模板中有两个模板函数sqlTemplate、childSqlTemplate,childSqlTemplate作为一个子模板被sqlTemplate调用。sqlTemplate中select 后面的列名分为两部分,一部从数组变量columns中获取,并以“,”进行分割,另一部分从数组childColumns中获取,使用“,”分割的同时,也为每个列名增加了“t2.”的前缀,即子查询的别名。from部分中将childSqlTemplate函数模板作为一个子查询进行join。这样获得了一个比较复杂的sql语句。
java代码如下:

        STGroup stg = new STGroupFile("dataExtractSql.stg");
        ST sqlST = stg.getInstanceOf("sqlTemplate");

        List<String> columnList = new LinkedList<String>();
        columnList.add("order_id");
        columnList.add("price");
        columnList.add("phone");
        columnList.add("user");

        sqlST.add("columns", columnList);
        sqlST.add("condition", "dt='2017-04-04'");
        sqlST.add("joinKey", "user");
        sqlST.add("tableName", "orderTable");

        List<String> childColumnList = new LinkedList<String>();
        childColumnList.add("user");
        childColumnList.add("userLeave");
        childColumnList.add("userLocation");
        sqlST.add("childColumns", childColumnList);
        sqlST.add("childJoinKey", "user");
        sqlST.add("childTableName", "userTable");

        String result = sqlST.render();

        System.out.print(result);

输入内容如下:

select order_id,price,phone,user,t2.user,t2.userLeave,t2.userLocation
from orderTable as t1 left join (select user,userLeave,userLocation
from userTable
where 1=1 ) as t2 on t1.user=t2.user
where 1=1 and dt='2017-04-04'



你可能感兴趣的:(技术)