I think my problems come from hibernate not Spring AOP ...
It may be a hazard that the behaviour changes when I activate AOP.
I wil post a reply when I will have the solution.
Type: Posts; User: fnowal; Keyword(s):
I think my problems come from hibernate not Spring AOP ...
It may be a hazard that the behaviour changes when I activate AOP.
I wil post a reply when I will have the solution.
I will prepare a sample archive to investigate this problem, I will post it as soon as possible.
Thanks for your answers Joerg.
Fred
I comment the advisor in the aop:config
<aop:config>
<aop:pointcut id="billingOperation" expression="execution(* com.f4.owl.service.billing.BillingService.*(..))"/>
...
Thank you for your answer again.
When I disable AOP transactions, everything works fine, the object retrieved from the DAO is of the good type (InternalCard). The problem is not coming from...
Thank you for your answer.
Yes, I know JDK proxies works on interface. But I have no interfaces here just the abstract classes PaymentMethod and the concrete class InternalCard. So I don't...
Nobody to help me ;-((((( ???
Hello, I have a problem when I enable AOP transactions on services that are using hibernate based DAO.
Here is my domain model and hibernate mapping file:
public abstract class...