Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have an sql looks like this.

<sql name="level1">
  ${alias}some AS ${prefix}some
</sql>

Now I want to nest above fragment into another fragment while propagating those two properties.

<sql name="level2">
  ${alias}other AS ${prefix}other,
  <include refid="level1">
    <property name="alias" value="${alias}"/> <!-- will this "${alias}" work? -->
    <property name="prefix" value="${prefix}"/>  <!-- will this "${prefix}" work? -->
  </include>
</sql>

My apologies, I should've tried for myself and saw what happened. But I'm working on a remote site and the testing environment is not complete.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...