本文實例為大家分享了springmvc maven搭建web項目的具體步驟,供大家參考,具體內容如下
1、創建一個maven project 為spring1
2、進行項目的配置:默認的java 1.5 在properties中選擇project facts項目進行配置,反選web之后修改java環境為1.8.修改之后如下圖:
3. 配置好的工作目錄如下:
4 修改pom.xml文件
增加兩個jar包:servlet和spring webmvc
pom.xml如下:
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!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> <servlet> <servlet-name>spring</servlet-name> <servlet- class >org.springframework.web.servlet.dispatcherservlet</servlet- class > </servlet> <servlet-mapping> <servlet-name>spring</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app> |
4. 默認的配置文件是spring-servlet.xml ,在/web-inf下創建配置文件,內容如下:
1
|
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?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:tx= " http://www.springframework.org/schema/tx " 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/tx http: //www.springframework.org/schema/tx/spring-tx.xsd http: //www.springframework.org/schema/mvc http: //www.springframework.org/schema/mvc/spring-mvc.xsd"> <!-- 配置掃描的包 --> <context:component-scan base- package = "spring1.*" /> <!-- 注冊handlermapper、handleradapter兩個映射類 --> <mvc:annotation-driven /> <!-- 訪問靜態資源 --> <mvc: default -servlet-handler /> <!-- 視圖解析器 --> <bean > <property name= "prefix" value= "/web-inf/" ></property> <property name= "suffix" value= ".jsp" ></property> </bean> </beans> |
注:在這個默認的配置過程中 程序會掃描spring1包中的所有的controller
5、 在src/main/java創建controller
1
|
2
3
4
5
6
7
8
9
10
11
12
13
|
package spring1; import org.springframework.stereotype.controller; import org.springframework.web.bind.annotation.requestmapping; @controller public class democontroller { @requestmapping ( "/index" ) public string index(){ return "index" ; } } |
6、 在webapp目錄下創建index.jsp.
1
|
2
3
4
5
|
<html> <body> <h2>hello world!</h2> </body> </html> |
7、 部署項目到tomcat上,部署的內容如下:
8、啟動tomcat 在瀏覽器中輸入:http://localhost:8080/spring1/
總結:調試了好久,終于調試出來信息啦 小小激動一下啊
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。