SpringMVC-3
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/service.xml, /WEB-INF/persistence.xml</param-value>
</context-param>
<listner>
<listner-class>
org.springframework.web.context.ContextLoaderListener
</listner-class>
</listner>
<servlet>
<servlet-name>front</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispactcherServlet
<servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/front.xml</param-value>
</init-param>
</servlet>
<servlet>
<servlet-name>rest</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispactcherServlet
<servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/rest.xml</param-value>
</init-param>
</servlet>Last updated