Spring Security

Samuel Martín

<context-param>

        <param-name>contextConfigLocation</param-name>

        <param-value>

            classpath:applicationContext-business.xml

        </param-value>

    </context-param>

<servlet>

        <servlet-name>bank</servlet-name>

        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

        <load-on-startup>1</load-on-startup>

    </servlet>

<authentication-manager>

        <authentication-provider>

            <user-service>

                <user name="rod" password="rid" authorities="supervisor, teller, user" />

                <user name="dianne" password="loca" authorities="teller, user" />

                <user name="scott" password="scatt" authorities="user" />

                <user name="peter" password="pan" authorities="user" />

            </user-service>

        </authentication-provider>

    </authentication-manager>

Spring Security

By samuelmartin1988

Spring Security

  • 664