Information

0
Story Points

Technologies

Spring XML
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
						http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
		
	<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
		<property name="mappings">
			<value>
				monitor=monitorController
				verify=verifyController
            </value>
		</property>
	</bean>
	<bean id="monitorController" class="ee.adit.web.controller.MonitorController">
		<property name="monitorService" ref="monitorService" />
		<property name="configuration" ref="configuration" />
	</bean>
	<bean id="verifyController" class="ee.adit.web.controller.VerifyController">
		<property name="documentService" ref="documentService" />
		<property name="checkSignatures" ref="checkSignatures" />	
		<property name="digidocConfigurationFile" value="jdigidoc.cfg" />
		<property name="configuration" ref="configuration" />
	</bean>
	
	<!-- Enabling Spring annotation based transactions -->
	<tx:annotation-driven transaction-manager="transactionManager" />
						
</beans>
Page generated: Oct 19, 2017 2:34:13 PM