我正在使用spring-3.2.2。我是 Spring 新手,第一次使用 Spring 表达式语言。请考虑以下我面临问题的弹簧配置文件片段。
<bean id="bean3" class="com.springaction.testcollection.PersonBean">
<property name="name" value="Prakash" />
<property name="age" value="62" />
<property name="salary" value="30000" />
<property name="bonus" value="#{salary*T(PersonBean).count}" />
</bean>
在上面的代码片段中,我想使用同一个 bean(bean3) 的工资字段来计算奖金值。我只想知道如何在spring-configuration文件中引用当前bean的字段?可能吗?如果没有,有没有其他方法可以解决这个问题?