SpringMVC工程的web.xml以及其他配置文件
<!-- 當前的這個web.xml是maven為我們自動生成的,在web-app2.3下我們的jsp頁面會默認的將EL表達式關閉;所以我們希望將這個東西替換掉,使用我們的2.4以上的版本 -->
<!-- 2.3 -->
<!-- -->
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<!-- 2.4 默認支持EL-->
<!--
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:web="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd "
version="2.4">
-->
<display-name>HelloSpringMVC</display-name>
<!-- DispatcherServlet有一些參數配置,默認情況下我們不需要指定,如果需要可通過<servlet>的<init-param>指定
1)namespace:DispatcherServlet對應的命名空間,默認為$servlet-name$-servlet,用於構造spring配置文件的路徑;指定該屬性後,配置文件對應的路徑就變成了WEB-INF路徑下namespace.xml文件
2)contextConfigLocation:如果DispatcherServlet上下文對應的spring配置文件有多個,則可使用該屬性按照spring資源路徑的方式指定,它和namespace有一樣的功效
3)publishContext:一個boolean類型的屬性,默認值是true,DispatcherServlet會根據該屬性的值決定是否將webapplicationtext發布到servletContext屬性列表中,以便調用者可藉由servletContext找到webApplicationContext實例
4)publishEvents:一個boolean類型的屬性,決定當DispatcherServlet處理完一個請求之後,是否需要向容器發布一個servletRequestHandleEvent事件,默認為true;如果容器中沒有任何事件監聽器,可以將此屬性設定為false,以便提高運行性能
-->
<!-- ①業務層和持久層Spring配置文件,這些配置文件被父Spring容器所應用 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<!-- 若有多個配置文件,可以使用逗號分隔 -->
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- ②聲明DispatcherServlet -->
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<!-- 指定了springmvc配置文件所在的位置 -->
<param-value>classpath:mvc-dispatcher-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<!-- ③處理所有的http請求 ,由於攔截不同的dong可以有多個dispatcherServlet-->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
<?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:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
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-4.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">
<!-- 本配置文件是供名為dispatcher的DispatcherServlet使用,提供其相關的Spring MVC配置 -->
<!-- 啟用Spring基於annotation的DI,使用戶可以再Spring MVC中使用Spring的強大功能
激活@Required @Autowired等註解 -->
<context:annotation-config/>
<!-- DispatcherServlet上下文,只搜索@Controller標註類 不搜索其他標註的類 -->
<context:component-scan base-package="com.test">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!--擴充了註解驅動,可以將請求參數綁定到控制器參數 -->
<mvc:annotation-driven />
<!-- 靜態資源處理,css,js,images -->
<mvc:resources mapping="/resources/**" location="/resources/"/>
<!--配置ViewResolver,可以有多個ViewResolver,使用order屬性排序;InternalResourceViewResolver放在最後-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 前綴 -->
<property name="prefix" value="/WEB-INF/views/" />
<!-- 後綴 -->
<property name="suffix" value=".jsp" />
</bean>
</beans>
<?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:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
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">
<context:annotation-config />
<!-- 不需要管理Controller了 -->
<context:component-scan base-package="com.test">
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Controller" />
</context:component-scan>
</beans>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.test</groupId>
<artifactId>HelloSpringMVC</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>HelloSpringMVC Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<spring.version>4.1.1.RELEASE</spring.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
</dependencies>
<build>
<finalName>HelloSpringMVC</finalName>
</build>
</project>
※運維人必收藏的最全Linux伺服器程序規範
※ubuntu怎麼使用命令搜索軟體源中的軟體
TAG:程序員小新人學習 |