Bonsoir
Je travaille sur un projet web avec Spring. En faite, lorsque j'ajoute un aspect dans mon fichier applicationContext.xml une erreur se déclenche j'ai cherché sur le net j'ai pas trouvé une réponse claire y on a qui disent c'est un problème de version et d'autre qui n'ont pas trouvé de solution
le fichier applicationContext.xml
l'erreur
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10 <aop:config> <aop:pointcut id="servicePointcut" expression="execution(* domain.DAOContact.hello(String))"/> <aop:aspect id="loggingAspect" ref="monLogger"> <aop:before method="logMethodEntry" pointcut-ref="servicePointcut"/> <aop:after-returning method="logMethodExit" returning="result" pointcut-ref="servicePointcut"/> </aop:aspect> </aop:config> <bean id="monLogger" class="domain.MonLogger"/>
org.springframework.beans.MutablePropertyValues.add(Ljava/lang/String;Ljava/lang/ObjectLorg/springframework/beans/MutablePropertyValues;
Je vois que personne n'as vu mon problème peut être que j'ai mal exprimé le problème bref j'ai créé un nouveau projet avec les même classe et le même fichier de configuration pour tester AOP et ca marche et dans mon projet ca marche pas je vais devenir fous quelqu'un peut jeter un coup d'œil
merci
Partager