BTW, I just bit the bullet and upgraded to Spring 2.5.4. Problem solved.
Type: Posts; User: cpmcda01; Keyword(s):
BTW, I just bit the bullet and upgraded to Spring 2.5.4. Problem solved.
I am trying to create a pointcut expression to select the methods of all beans annotated with @Repository. Here is one of the beans I am trying to capture:
@Repository
public class ListDAOImpl...
I am having this same issue in 2.0.5 (Before and After advice working, but not Around). Has this been resolved yet?
OK, right now what I am doing is grabbing the changed objects in onFlushDirty and onSave and storing them in a HashSet. Then, in afterTransactionCompletion, I am executing my other DAOs on the...
I guess I should clarify. I DON'T need the additional business logic to execute within the transaction scope of the original action. I just need to make sure that the logic is triggered by the...
I have a need to execute some business logic whenever certain domain objects are inserted/updated. The problem is that the business logic is complex and requires several DAOs for read-only data...
I need to be able to change what database my app is connecting to depending on whether it is being run in development, testing, or production. The best I've come up with so far is separate spring...
I guess DataSources are not serializable?
Assume the calling code is not in a webapp but a stand-alone command line application that will consume JMS messages. That is why I put the JNDI name in the global context instead of the ENC.
I would like to configure my DataSources in a central place and provide them to client apps via JNDI. So I've set up the JCA configuration in JBoss (and made sure its in the global namespace). I have...
I have just recently discovered Spring and am about to begin a project where IoC will be very useful. Its a reporting engine where each report will involve configuring multiple report "modules" which...