Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

mybatis - How can I propagate properties into a nested sql fragment?

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...