Stringtemplate - 使用条件而不向输出添加换行符,并且仍然保持模板清晰可读?

时间:2016-02-07 19:22:10

标签: stringtemplate stringtemplate-4

我有这样的事情:

properties(attributeInfo) ::= <<
private <attributeInfo:parameters()>;

>>

parameters(attributeInfo) ::= <<
<if(attributeInfo.struct||attributeInfo.array)><attributeInfo:paramComposite()><else><javaTypeNameMap.(attributeInfo.typeName)> <attributeInfo.propertyName><endif>
>>

这会产生所需的输出:

private com.terradatum.common.db.model.terradatum.MlsAgentIdObj agentObj;
private String officeName;
private String officeAddress;
private String officeCity;
private String officeState;
private String officeZipcode;
private MlsPhoneTbl phoneTbl;
private String agentEmail;
private String agentAddress;
private String agentCity;
private String agentState;
private String agentZipcode;

当我将parameters子模板更改为以下内容时:

parameters(attributeInfo) ::= <<
<if(attributeInfo.struct||attributeInfo.array)><attributeInfo:paramComposite()>
<else><javaTypeNameMap.(attributeInfo.typeName)> <attributeInfo.propertyName>
<endif>
>>

模板更清晰,但输出现在包含换行符:

private com.terradatum.common.db.model.terradatum.MlsAgentIdObj agentObj
;
private String officeName
;
private String officeAddress
;
private String officeCity
;
private String officeState
;
private String officeZipcode
;
private MlsPhoneTbl phoneTbl
;
private String agentEmail
;
private String agentAddress
;
private String agentCity
;
private String agentState
;
private String agentZipcode
;

我对这种行为感到困惑 - 基于我对如何有条件地包含子模板的理解,以及条件WRT到换行的行为,parameters子模板的两种形式应该产生相同的输出。 / p>

显然我的理解是不正确的,所以我希望有人会给我一些指导。

1 个答案:

答案 0 :(得分:1)

尝试:

parameters(attributeInfo) ::= <%
<if(attributeInfo.struct||attributeInfo.array>
  <attributeInfo:paramComposite()>
<else><javaTypeNameMap.(attributeInfo.typeName)>
  <attributeInfo.propertyName>
<endif>
%>

<% ...%>让stringtemplate忽略分隔空格。 << ...>>仅忽略前导和尾随换行符。

在某些情况下,函数trim的调用也可以提供帮助。