Line | |
---|
1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd"> |
---|
3 | |
---|
4 | <!-- |
---|
5 | - Server application context definition for "springapp" DispatcherServlet. |
---|
6 | --> |
---|
7 | |
---|
8 | <beans> |
---|
9 | <import resource="classpath:springapp.xml"/> |
---|
10 | |
---|
11 | <import resource="project-config.xml"/> |
---|
12 | <import resource="project-services.xml"/> |
---|
13 | <import resource="project-managers.xml"/> |
---|
14 | <import resource="project-security.xml"/> |
---|
15 | <import resource="project-spring.xml"/> |
---|
16 | |
---|
17 | <bean id="urlMapping" |
---|
18 | class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> |
---|
19 | <property name="mappings"> |
---|
20 | <value> |
---|
21 | /**/*.json=agJSONController |
---|
22 | /**/*.download=agFileDownloadController |
---|
23 | /**/*.upload=agFileUploadController |
---|
24 | </value> |
---|
25 | </property> |
---|
26 | </bean> |
---|
27 | </beans> |
---|
Note: See
TracBrowser
for help on using the repository browser.