IDEA使用maven新建一個SpringMVC專案 (學習SpringMVC 第一階段建立專案)
阿新 • • 發佈:2018-11-18
今天女朋友問我 如何建一個springmvc專案 寫這篇部落格給她看
第一步 新建專案
組名可根據寫的專案要求修改 ArtifactId建立到後面預設是專案名
新建完成後的目錄結構
第二步 建立目錄結構
第三步 新增springmvc的依賴 (使用maven新增依賴就是在pom.xml 新增)
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>test</artifactId> <version>1.0-SNAPSHOT</version> <packaging>war</packaging> <name>test Maven Webapp</name> <url>http://www.example.com</url> <!--版本管理--> <properties> <spring.version>4.3.6.RELEASE</spring.version> <servlet-api.version>3.0.1</servlet-api.version> <jsp-api.version>2.0</jsp-api.version> </properties> <dependencies> <!-- SpringMVC --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <!-- JSP相關 --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>${servlet-api.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>${jsp-api.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>
下載完 就說明新增依賴完成
第四步 配置tomcat
我的idea還沒有配置過本地tomcat 如果已經配置過可跳過
選擇本地tomcat點選ok
已經設定過tomcat的 從這裡開始把專案釋出到tomcat
然後點選ok 完成配置
第五步 修改web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app
version="3.0"
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 http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<!--配置spring的配置檔案位置 我配置檔案的-*是一個萬用字元 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/applicationContext-*.xml</param-value>
</context-param>
<!--配置spring監聽器-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--設定字符集過濾器-->
<filter>
<filter-name>springUtf8Encoding</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>springUtf8Encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!--設定檢視層servlet-->
<servlet>
<servlet-name>springDispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 配置檔案地存放位置 -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/applicationContext-mvc.xml</param-value>
</init-param>
<!-- 優先執行載入操作:在伺服器啟動地同時載入對應檔案 -->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springDispatcherServlet</servlet-name>
<!--
url-pattern設定的值為瀏覽器位址列中輸入的值 可任意填 訪問時需要加上你配置的字尾
如: 我配置為 <url-pattern>*.test</url-pattern>
瀏覽器url需要輸入 http://localhost:8080/XXX.test 這裡的字尾需要填寫你配置的值
-->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
第六步 新增springmvc配置檔案 放在resources/spring目錄下 命名為applicationContext-mvc.xml
<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-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
<context:component-scan base-package="com.test.*.controller"/>
<!-- 攔截器 -->
<!--
<mvc:interceptors>
<!– 多個攔截器,順序執行 –>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<mvc:exclude-mapping path="/resources/**"/>
<bean class="攔截器包.攔截器類名"/>
</mvc:interceptor>
</mvc:interceptors>
-->
<!--靜態資源路徑-->
<mvc:resources location="resources/" mapping="/resources/**"/>
<!-- 在實際開發中通常都需配置 mvc:annotation-driven標籤,這個標籤是開啟註解 -->
<!--
SpringMVC開發需要註解
url解析器
處理器
<mvc:annotation-driven/>
-->
<mvc:annotation-driven/>
<!-- 檢視解析器: 配置地時返回值的處理方式
字首:/WEB-INF/views/
字尾:.jsp
index / index . jsp
-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsps/"/> <!--設定controller返回試圖的字首-->
<property name="suffix" value=".jsp"/> <!--設定controller返回試圖的字尾-->
</bean>
</beans>
可以執行一下 檢視是否報錯 這裡已經配置好springmvc了
下篇我會寫常用的springmvc知識 可作為學習的參考