クラス LangNamespaceHandler

java.lang.ObjectSE
org.springframework.beans.factory.xml.NamespaceHandlerSupport
org.springframework.scripting.config.LangNamespaceHandler
実装されたすべてのインターフェース:
NamespaceHandler

public class LangNamespaceHandler extends NamespaceHandlerSupport
Groovy、JRuby、BeanShell などの動的言語に基づくオブジェクトのワイヤリングをサポートする NamespaceHandler。以下は、Groovy で裏打ちされた Bean の接続の詳細を示す(リファレンスドキュメントからの)例です。
 <lang:groovy id="messenger"
     refresh-check-delay="5000"
     script-source="classpath:Messenger.groovy">
 <lang:property name="message" value="I Can Do The Frug"/>
 </lang:groovy>
 
導入:
2.0
作成者:
Rob Harrop, Juergen Hoeller, Mark Fisher