File differences
| src/main/webapp/WEB-INF/web.xml |
| 1 | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
| 2 | 2 | <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" |
| 4 | | version="2.4"> |
| 3 | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> |
| 5 | 4 | <context-param> |
| 6 | 5 | <param-name>contextConfigLocation</param-name> |
| ... | ... | |
| 12 | 11 | <filter> |
| 13 | 12 | <filter-name>characterEncodingFilter</filter-name> |
| 14 | | <filter-class> |
| 15 | | org.springframework.web.filter.CharacterEncodingFilter</filter-class> |
| 13 | <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> |
| 16 | 14 | <init-param> |
| 17 | 15 | <param-name>encoding</param-name> |
| 18 | 16 | <param-value>UTF-8</param-value> |
| ... | ... | |
| 31 | 29 | <filter> |
| 32 | 30 | <filter-name>JPA Filter</filter-name> |
| 33 | | <filter-class> |
| 34 | | org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter</filter-class> |
| 31 | <filter-class>org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter</filter-class> |
| 35 | 32 | </filter> |
| 36 | 33 | <filter-mapping> |
| 37 | 34 | <filter-name>JPA Filter</filter-name> |
| ... | ... | |
| 41 | 38 | <listener> |
| 42 | | <listener-class> |
| 43 | | org.springframework.web.context.ContextLoaderListener</listener-class> |
| 39 | <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> |
| 44 | 40 | </listener> |
| ... | ... | |
| 62 | 58 | <servlet> |
| 63 | 59 | <servlet-name>Spring MVC Dispatcher Servlet</servlet-name> |
| 64 | | <servlet-class> |
| 65 | | org.springframework.web.servlet.DispatcherServlet</servlet-class> |
| 60 | <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> |
| 66 | 61 | <init-param> |
| 67 | 62 | <param-name>contextConfigLocation</param-name> |
| 68 | 63 | <param-value></param-value> |
Download the corresponding diff file