Hello Dave. Yes I have, originally it was like so:
<!-- Simple bean which will later be used as an aspect -->
<bean id="auditor" class="org.openhds.webui.util.Auditor" >
<property name="currentUser" ref="currentUser" />
</bean>
<!-- Aspect definition -->
<aop:config>
<aop:aspect ref="auditor">
<aop:pointcut id="insertByMethod"
expression="execution(*
org.openhds.webui.EntityCrud.performAudit(java.lang.Object))
and args(entityItem)"/>
<aop:before pointcut-ref="insertByMethod"
method="setInsertBy"/>
</aop:aspect>
</aop:config>
However in order to learn where the exception was coming from I
started deleting the lines within the <aop:config> element, and the
error persisted until there was nothing else left except just the
<aop:config> elements with no other elements within it. And when just
the <aop:config> element is left the error is still there, leading me
to believe the error begins on the declaration of this element