source: extensions/jiwigo/trunk/src/main/resources/application-context.xml @ 9921

Last change on this file since 9921 was 9921, checked in by mlg, 13 years ago

Adds spring for the dependency injection
Deletion of jdom (not useful just for a class that manipulates a simple XML file)

File size: 607 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans"
3xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4xsi:schemaLocation="http://www.springframework.org/schema/beans
5http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
6
7        <bean id="sessionManager" class="fr.mael.jiwigo.transverse.session.impl.SessionManagerImpl">
8                <property name="userAgent" value="Mozilla/5.0 (X11; Linux i686; rv:2.0) Gecko/20100101 Firefox/4.0"/>
9        </bean>
10
11        <import resource="application-context-dao.xml" />
12
13        <import resource="application-context-service.xml" />
14</beans>
Note: See TracBrowser for help on using the repository browser.