文章出處

1.IDE說明和依賴管理工具說明

開發工具:intellij idea
依賴管理使用:maven

2.創建maven工程

創建新的maven工程,并添加相應的文件夾,創建好的項目目錄如下所示:

3.添加SpringMVC相關依賴

在pom.xml中添加SpringMVC所需依賴。將以下代碼添加到pom.xml中:

  <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-webmvc</artifactId>
      <version>4.3.10.RELEASE</version>
  </dependency>

在springmvc的依賴中內部依賴了Spring-bean,Spring-core等依賴,所以不需要額外添加其他Spring依賴包。具體依賴關系可以使用

mvn dependency:analyze  
mvn dependency:tree

命令來分析依賴關系。

4.在web.xml中添加Context加載監聽器和訪問路由相關配置

在web.xml中添加以下配置代碼:

<context-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>classpath*:applicationContext.xml</param-value>
</context-param>
//用于加載spring配置文件的監聽器
<listener>
   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
   <servlet-name>applicationContext</servlet-name>
   <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
   <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
   <servlet-name>applicationContext</servlet-name>
   <url-pattern>*.htm</url-pattern>
</servlet-mapping>

第一個監聽器用于加載spring配置文件,其中context-param中指定了配置文件的路徑。
applicationContext中指定了所有.htm結尾的訪問都使用springMVC來進行路由分發。

5.添加Spring和SpringMVC配置文件

1.在resource文件夾中添加applicationContext.xml配置文件,并添加以下配置:

<context:annotation-config/>// 開啟spring注解配置
<mvc:annotation-driven></mvc:annotation-driven>//開啟mvc注解配置,用于識別controller等注解
<context:component-scan base-package="com.springmvc.study.*"></context:component-scan>// 配置掃描的包

2.在WEB_INF文件夾下添加applicationContext-servlet.xml配置文件,此文件名命名規則為:第三步驟中添加的applicationContext名稱-servlet。
此文件中可以不添加內容,但文件是必須的,否則啟動時會報file not found錯誤

6.添加Controller文件

在src/main/java文件下新建java類,如:HelloWorldController,并添加以下代碼:

@Controller
@RequestMapping(value = "/first")
public class HelloWorldController {

    @ResponseBody
    @RequestMapping(value = "/helloworld")
    public String helloWorld(){
        return "hello world!";
    }
}

所有文件添加完成后項目目錄截圖如下所示:

7.測試

在tomcat中啟動此項目后,在瀏覽器中輸入:

http://localhost:8083/first/helloworld.htm

可看到輸出的hello world!;

第一個spring mvc項目完成!


文章列表


不含病毒。www.avast.com
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()