Last active
October 12, 2015 06:58
-
-
Save wizardjedi/3988379 to your computer and use it in GitHub Desktop.
Most full spring framework XML context file template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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:p="http://www.springframework.org/schema/p" | |
xmlns:c="http://www.springframework.org/schema/c" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xmlns:task="http://www.springframework.org/schema/task" | |
xmlns:tx="http://www.springframework.org/schema/tx" | |
xmlns:batch="http://www.springframework.org/schema/batch" | |
xmlns:util="http://www.springframework.org/schema/util" | |
xmlns:mvc="http://www.springframework.org/schema/mvc" | |
xmlns:security="http://www.springframework.org/schema/security" | |
xmlns:rabbit="http://www.springframework.org/schema/rabbit" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans | |
http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/task | |
http://www.springframework.org/schema/task/spring-task.xsd | |
http://www.springframework.org/schema/tx | |
http://www.springframework.org/schema/tx/spring-tx.xsd | |
http://www.springframework.org/schema/context | |
http://www.springframework.org/schema/context/spring-context.xsd | |
http://www.springframework.org/schema/util | |
http://www.springframework.org/schema/util/spring-util.xsd | |
http://www.springframework.org/schema/batch | |
http://www.springframework.org/schema/batch/spring-batch.xsd | |
http://www.springframework.org/schema/mvc | |
http://www.springframework.org/schema/mvc/spring-mvc.xsd | |
http://www.springframework.org/schema/security | |
http://www.springframework.org/schema/security/spring-security.xsd | |
http://www.springframework.org/schema/rabbit | |
http://www.springframework.org/schema/rabbit/spring-rabbit-1.5.xsd | |
"> | |
</beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Added spring batch namespace.