Hi Marten,
Thanks for the response. When I mentioned 'plain text' I was kinda referring to the configuration information presented as plain text via properties + Spring XML config file (using...
Type: Posts; User: sasuke; Keyword(s):
Hi Marten,
Thanks for the response. When I mentioned 'plain text' I was kinda referring to the configuration information presented as plain text via properties + Spring XML config file (using...
Hi all,
I've been recently skimming through the 12th chapter of Spring in Action, 2nd edition. In the section which deals with sending mails, the author mentions:
What kind of "security"...
> If there is no transactionmanager there is no correct cleanup of the connection
Are you sure? Because by looking at the source code for JdbcTemplate class, it seems that if a transaction is...
Though I don't use Spring Actionscript for my PureMVC development, I might be able to shed light on the Single Core v/s Multi-core version.
The single core version is more geared toward POC work...
Hi all.
I'm currently trying my hand out at writing aspects which are applied only when the pointcut method is invoked from a specific class.
For e.g. let's consider a sample pointcut like:
...
Yes indeed, esp considering that I don't know how to make proxy objects intercept internal method calls [this isn't even possible I guess].
I was successful in making it work with LTW but given...
Ah, thanks for the response. This seems a bit troublesome; any way of making this work other than using pure AspectJ which performs load time / run time weaving as suggested by the Spring docs?
...
Hi all,
I've been using the AOP feature of Spring to execute all the methods which start with "do" of my sample class "TestComponent". For some strange reason the method interception works only...
Ah, this is worth trying out. I'll get back with results as soon as get the opportunity to try this out.
Thanks for your answer, much appreciated. :-)
./sasuke
Thanks for the reply Denis.
You are correct; I need to disable proxies but not at a global level. The scenario is:
Our application is created using Spring hence we have a Spring config file...
Hi all.
A quick question: Is is possible to disable proxying altogether at a global level for objects requested from the spring container?
I'm using Spring to inject test data[read Value...