go to  ForumEasy.com   
JavaPro
Home » Archive » Message


[Email To Friend][View in Live Context][prev topic « prev post | next post » next topic]
  web.xml
 
Subject: web.xml
Author: WebSpider
In response to: Project's Structure
Posted on: 10/07/2019 07:02:07 AM

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

	<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/spring/root-context.xml</param-value>
	</context-param>
	
	<!-- Creates the Spring Container shared by all Servlets and Filters -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

	<!-- Processes application requests -->
	<servlet>
		<servlet-name>appServlet</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
		
	<servlet-mapping>
		<servlet-name>appServlet</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>

</web-app>


 

> On 10/07/2019 06:57:12 AM WebSpider wrote:

[+] ... HelloWorldSpringMVC
    [+] ... src
        [+] ... main
            [+] ... java
                [+] ... com
                    [+] ... example
                        [+] ... myapp
                            [-] ... HomeController.java
            [+] ... resources
                [-] ... log4j.xml
            [+] ... webapp
                [+] ... resources
                [+] ... WEB-INF
                    [+] ... classes
                    [+] ... spring
                        [+] ... appServlet
                            [-] ... servlet-context.xml
                        [-] ... root-context.xml
                    [+] ... views
                        [-] ... home.jsp
                    [+] ... web.xml
        [+] ... test
    [+] ... target
    [-] ... pom.xml





References:

 


 
Powered by ForumEasy © 2002-2022, All Rights Reserved. | Privacy Policy | Terms of Use
 
Get your own forum today. It's easy and free.