<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:/applicationContext*.xml
</param-value>
</context-param>
The snippet above is ok in eclipse but it can't work in RAD. The following configuration can work in RAD.
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath
*:/applicationContext*.xml
</param-value>
</context-param>
public void setDispIndex(
Integer dispIndex) {
this.dispIndex = dispIndex;
}
menu11.setDispIndex
(1); //it can't work in RAD.
menu11.setDispIndex(
new Integer(1)); // it works in RAD.