I need to get the value of the property name logLvl of bean id logConfig and make a comparison on expression.
<bean id="logConfig"
class="com.celfocus.ufe.base.logging.domains.LoggingConfiguration">
<property name="logDetails" value="STANDARD" />
<property name="logLvl" value="COMPLET" />
</bean>
<aop:config>
<aop:aspect ref="ufeLogger">
<aop:pointcut id="complete" expression="execution(* *.*(..)) and ($logConfig.logLvl=STANDARD)" />
This piece of code gives an illegal identifier character =
. What can I do to make this check?