forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.6 KiB
44 lines
1.6 KiB
<?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:context="http://www.springframework.org/schema/context"
|
|
xmlns:mvc="http://www.springframework.org/schema/mvc"
|
|
xmlns:security="http://www.springframework.org/schema/security"
|
|
xmlns:ws="http://jax-ws.java.net/spring/core"
|
|
xmlns:wss="http://jax-ws.java.net/spring/servlet"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context.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://jax-ws.java.net/spring/core
|
|
http://jax-ws.java.net/spring/core.xsd
|
|
http://jax-ws.java.net/spring/servlet
|
|
http://jax-ws.java.net/spring/servlet.xsd ">
|
|
|
|
|
|
|
|
<mvc:resources mapping="/static/**" location="/static/" />
|
|
|
|
|
|
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
|
|
<property name="viewClass">
|
|
<value>org.springframework.web.servlet.view.tiles3.TilesView</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="tilesConfigurer" class="org.springframework.web.servlet.view.tiles3.TilesConfigurer">
|
|
<property name="definitions">
|
|
<list>
|
|
<value>/WEB-INF/tiles.xml</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
|
|
</beans> |