Does anyone know if it is possible to write a interceptor can help adding argument to a method call transparently?
e.g. xxxMethod(Arg 1)
finally return, it is
xxxMethod(Arg 1, Arg 2)
...
Type: Posts; User: dowchen; Keyword(s):
Does anyone know if it is possible to write a interceptor can help adding argument to a method call transparently?
e.g. xxxMethod(Arg 1)
finally return, it is
xxxMethod(Arg 1, Arg 2)
...
I experienced problems when desiging the audit trail architecture using AOP, I hope someone can help, my design is:
An database audit trail interceptor with AutoProxyBeanName with monitoring the...
Anyone has implemented any audit trail solution for Spring?
Could you give me some idea or even source code?
My wish is to have a audit trail interceptor catching the method names of the DAO...
Andreas,
Please ignore the previous post. Thanks a lot for your kindly help.
I found that the transaction is not running before, and now fixed.
This thread could be closed.
Thanks again!
Andreas,
Thanks for your help.
I have turned on the debug on the class TransactionAspectSupport, but I didn't find any debug messages returned.
I also tried not to use JDO but to use JDBC...
More information on the exception:
Thanks.
I did turn on the debug and I saw that both the transaction manager and the transactionProxyFactory could be created in the bean factory successfully.
However, I didn't find any debug...
Andreas Senft,
Thanks for your reply. I want all of the persistence having a transaction.
I did define the Spring JdoTransactionManager and include it with the TransactionProxyFactoryBean, like...
I need help urgently.
I am using Spring 1.1 + JPOX JDO 1.1 Alpha 2 with the JDOTemplate and Spring JdoTransactionManager.
I have set the JDO properties
...
I cannot find any method in the SqlMapClientTemplate that can call the stored procedure defined in the iBatis?
Is there anyone have idea on this?
Dave :oops:
Thanks for your reply. I like your design on the temporal data handling. I will try to discover more. :oops:
Hi, I just have a look to your ONess project. First to say, it is very nice as the common modules implemented in AOP could be used seperately.
However, I would like to ask for several questions:
...
I would like to ask if there is any generic audit trail to the data access in the JDOInterceptor/HibernateInterceptor or in Spring?
If not, besides the use of the database trigger, anyone has...
That's cool. Thank you very much! :oops:
I found that in the TrasactionInterceptor, I could specify the transaction attributes, e.g. PROPAGATION_REQUIRED, PROPAGATION_MANDATORY, readOnly, ISOLATION_REQUIRED, etc
Can anyone provide me the...
Very thanks for the help. That'll be great if you could provide more code examples to me if any.
http://www.springframework.org/docs/reference/transaction.html#d0e4431
This may help :P
I checked against the Spring Reference Documentation V1.1 and found that the JDO section is empty. But I am going to use JDO inside Spring for my coming project, is there any other documentation on...