码迷,mamicode.com
首页 > 其他好文 > 详细

xml文件里一个字符串引用另一个字符串

时间:2015-03-17 18:18:15      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:xml

<?

xml version="1.0" encoding="UTF-8"?>

<

beans xmlns="http://www.springframework.org/schema/beans"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"

xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"

xsi:schemaLocation="http://www.springframework.org/schema/beans

http://www.springframework.org/schema/beans/spring-beans-3.2.xsd

FROM FARE_BY_RULE_SEG

FROM FARE_BY_RULE_SEG

WHERE RULE_BTCH_SG IN (:batchSGs)

AND SEG_EFF_DT < :effectiveDate

WHERE RULE_BTCH_SG IN (:batchSGs)

AND SEG_EFF_DT < :effectiveDate

http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd

http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd

http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd">

 

<import resource="classpath:/spring/FilingTextHistoryQueries.xml" />

 

 

<bean id="sqlFareByRuleIndexCnt" class="java.lang.String">

<constructor-arg index="0">

<value>

SELECT COUNT(*)

FROM FARE_BY_RULE_SEG

WHERE RULE_BTCH_SG IN (:batchSGs)

</value>

</constructor-arg>

</bean>

<bean id="ruleFBRILt" class="java.lang.String">

<constructor-arg index="0" value="#{sqlFareByRuleIndexCnt+‘ AND SEG_EFF_DT &lt; :effectiveDate‘}"/>

</bean>

 

 

 

</

beans>

 

结果为:ruleFBRILt=

SELECT COUNT(*)  FROM FARE_BY_RULE_SEG  WHERE RULE_BTCH_SG   IN (:batchSGs)  AND SEG_EFF_DT < :effectiveDate

 

 

xml文件里一个字符串引用另一个字符串

标签:xml

原文地址:http://5618698.blog.51cto.com/5608698/1621463

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!