java - How exactly works this Spring Security example? -
i pretty new in spring security , have doubt related configuration found tutorial. this spring-security.xml file used spring security configuration project: <?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:security="http://www.springframework.org/schema/security" xsi:schemalocation="http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <security:http> <security:intercept-url pattern="/springlogin" access="permitall"/> <security:intercept-url pattern="/dospringlogin" access="permitall"/> <security:intercept-url pattern=...