Look like you have an open bean. You open a <bean> element on line 73, but fail to close it.
<!-- BEGIN: LDAP/RollerDB hybrid security configuration --> <bean id="initialDirContextFactory" class="org.acegisecurity.ldap.DefaultInitialDirContextFactory"> <constructor-arg value="ldap://ldap.macalester.edu:389/o=mac"/> <property name="managerDn"> <value>SECRET_DN</value> </property> <property name="managerPassword"> <value>SECRET_PASSWORD</value> </property> Add </bean> on line 81 to close that <bean> - Dave
