24 lines
1.3 KiB
XML
24 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<b:beans xmlns="http://www.springframework.org/schema/mvc"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:b="http://www.springframework.org/schema/beans"
|
|
xmlns:p="http://www.springframework.org/schema/p"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
|
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
|
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
|
|
|
|
<context:component-scan base-package="org.springframework.security.samples.servletapi.mvc" />
|
|
|
|
<!-- Enables the Spring MVC @Controller programming model -->
|
|
<annotation-driven/>
|
|
|
|
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources/ directory -->
|
|
<resources mapping="/resources/**" location="/resources/" />
|
|
|
|
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
|
|
<b:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
|
|
p:prefix="/WEB-INF/views/"
|
|
p:suffix=".jsp" />
|
|
|
|
</b:beans> |