Skip to content
This repository was archived by the owner on Aug 30, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions youreffect/.springBeans
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<beansProjectDescription>
<version>1</version>
<pluginVersion><![CDATA[2.5.0.201010141000-RC1]]></pluginVersion>
<configSuffixes>
<configSuffix><![CDATA[xml]]></configSuffix>
</configSuffixes>
<enableImports><![CDATA[true]]></enableImports>
<configs>
</configs>
<configSets>
</configSets>
</beansProjectDescription>
4 changes: 2 additions & 2 deletions youreffect/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<mvc:resources mapping="/public/**" location="/public/" />

<bean id="mongo" class="com.mongodb.Mongo">
<constructor-arg index="0" value="54.214.154.98"/>
<constructor-arg index="1" value="27017"/>
<constructor-arg index="0" value="localhost" type="java.lang.String"/>
<constructor-arg index="1" value="27017" type="int"/>
</bean>

<bean id="mongofactory" class="org.springframework.data.mongodb.core.SimpleMongoDbFactory">
Expand Down
Loading