欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

bean:define用法

程序员文章站 2024-03-23 10:31:22
...

看以下示例:

 

<bean:define id="foo" name="bar" property="baz" scope="request" toScope="session"/> 

 意思是新建一个字符串叫foo,将bar这个实例下面叫baz的属性赋给foo.

foo默认的类型是String。

foo默认所在的scope是page。toScope则是将它的默认scope改为session.

scope="request"则是指从request中去寻找bar这个实例。

 

依此类推:分析以下代码,就不难懂了。

<bean:define id="showType"   name="column" property="showType"/>
 将column下面的showType赋给showType字符串。

上一篇: auto与decltype

下一篇: 2021-01-23