How to determine what xmlns are required for beans component of my spring-servlet.xml(spring configuration file) for spring security application?
Is this is the correct code?
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.4.xsd">
...
</beans>
I got my answer in the spring framework reference and that is mention below:
In general it should be like this. for reference Spring Security 3.0 Reference