[mud4j-commit] SF.net SVN: mud4j: [113] trunk
Status: Pre-Alpha
Brought to you by:
mpurland
|
From: <mpu...@us...> - 2007-01-14 18:45:11
|
Revision: 113
http://mud4j.svn.sourceforge.net/mud4j/?rev=113&view=rev
Author: mpurland
Date: 2007-01-14 10:45:05 -0800 (Sun, 14 Jan 2007)
Log Message:
-----------
Update spring config. Fix format. Add spring config for core.
Modified Paths:
--------------
trunk/mud4j-web/resources/spring-config.xml
Added Paths:
-----------
trunk/mud4j-core/resources/spring-config.xml
Added: trunk/mud4j-core/resources/spring-config.xml
===================================================================
--- trunk/mud4j-core/resources/spring-config.xml (rev 0)
+++ trunk/mud4j-core/resources/spring-config.xml 2007-01-14 18:45:05 UTC (rev 113)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- mud4j spring configuration -->
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:util="http://www.springframework.org/schema/util"
+ xmlns:aop="http://www.springframework.org/schema/aop"
+ xsi:schemaLocation="
+ http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+ http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd
+ http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
+
+ <bean id="webServer" class="net.sf.mud4j.web.server.JettyWebServer">
+ <constructor-arg type="int" value="8081" />
+ </bean>
+</beans>
\ No newline at end of file
Modified: trunk/mud4j-web/resources/spring-config.xml
===================================================================
--- trunk/mud4j-web/resources/spring-config.xml 2007-01-14 18:44:15 UTC (rev 112)
+++ trunk/mud4j-web/resources/spring-config.xml 2007-01-14 18:45:05 UTC (rev 113)
@@ -11,5 +11,5 @@
<bean id="webServer" class="net.sf.mud4j.web.server.JettyWebServer">
<constructor-arg type="int" value="8081" />
- </bean>
+ </bean>
</beans>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|