HP Integrity NonStop J-Series User Manual
Page 229

5.
Bean Instance for the implementation class: It creates a bean for the implementation class and
contains a reference to the data source.
6.
XML namespace and schema location: The namespace and schema locations of the
<aop:config>
and <tx:advice> tags must be defined as follows:
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop=http://www.springframework.org/schema/aop"
and
xsi:schemaLocation="http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd"
After modification, the applicationContext.xml file should appear as:
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
Using Spring Transaction Manager 229