我有这样的事情:
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>
显然我的理解是不正确的,所以我希望有人会给我一些指导。
答案 0 :(得分:1)
尝试:
parameters(attributeInfo) ::= <%
<if(attributeInfo.struct||attributeInfo.array>
<attributeInfo:paramComposite()>
<else><javaTypeNameMap.(attributeInfo.typeName)>
<attributeInfo.propertyName>
<endif>
%>
<% ...%>
让stringtemplate忽略分隔空格。 << ...>>
仅忽略前导和尾随换行符。
在某些情况下,函数trim
的调用也可以提供帮助。