http://forum.springsource.org/showthread.php?t=27754
http://jira.springframework.org/browse/SPR-5896
looks like next version of spring (3.0) will have the support.
Type: Posts; User: leonard.gestrin; Keyword(s):
http://forum.springsource.org/showthread.php?t=27754
http://jira.springframework.org/browse/SPR-5896
looks like next version of spring (3.0) will have the support.
a bit more info; i did a quick test and it appears spring takes first transaction manager that is defined as
<tx:annotation-driven transaction-manager="beanName"/>
and ignores subsequent...
Hello,
I have application that loads multiple spring factories. There is
spring-master-config.xml that includes
spring-dao1-config.xml
spring-dao2-config.xml
each of these xml files have...
my issue was similar. one of our modules had spring's beans.dtd checked in under
resources/dtd/beans.dtd
when i removed that file and rebuilt everything worked. Although, i am still puzzled why...
Hello,
we have an interesting problem. we package java application as one jar using maven:assembly plugin. The result jar contains all classes and resources.
when we start app on machine with no...
it works as expected. it was my mistake. i had datasource defined in yet another configuration xml which was being pulled by IBATIS, which is configured in sping1.xml, that did not have property...
the problem is not the fact that there are multiple xml.
this is my configuration
spring1.xml -> contains ibatis Bean referencing datasource bean "datasource1"
spring2.xml ->contains datasource...
Hello,
i've noticed the following odd behavior.
i have spring1.xml that contains datasource with properties and configurator bean PropertyPlaceholderConfigurer that uses custom property loader...
thanks for the reply.
my goal is to have one datasource (for TX reasons) defined that can be reused by all modules even though each module might contain its own spring configuration.
if 3rd...
Hello,
can someone suggest the right approach for spring configuration(s).
for simplicity, lets say the application consist of two modules:
1. domain (has spring configuration defining IBATIS...
i figured it out - the trick is to make sure that cglib does not pull it it's dependencies during build as it depends on older version of asm.
this mvn configuration seem to work
...
Hello,
I am a newbie at Spring AOP and it appears that I am having compatibility issues with dependencies.
I am using spring version 2.0.6 and and doing proxying AOP.