我的技術博客(α)

#Eclipse中SpringMVC框架環境搭建

因爲咱們的團隊項目最終決定使用SpringMvc來搭建後端的框架,因此我學習了SpringMvc環境的搭建以及其餘的一些有關的知識。本篇技術博客是學習了尚硅谷的springmvc視頻後,同時參考了網上的Eclipse中SpringMVC框架環境搭建寫下的,在本篇博客的截圖中也作了一些註釋說明,以便理解其中的代碼。html

1. 在開始以前,你須要先再eclipse中安裝開發spring的插件,這裏就不詳細多說了,具體參考百度經驗: http://jingyan.baidu.com/article/219f4bf798e0cfde442d3831.html

2. 在安裝完spring開發插件後,打開Eclipse,新建一個動態的web工程。

2.1 這裏的名字本身取,個人是springmvc-,而後點擊finish。

3. 下載Spring的jar包。地址是:https://maven.springframework.org/release/org/springframework/spring/,這裏我用的是以前電腦上下載的(spring-framework-4.1.2.RELEASE)。

3.1 下載完並解壓後,將所須要的jar包複製,並貼到springmvc-/WebContent/WEB-INF/lib中,如圖。


4. 配置web.xml文件。

<?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/javaee" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
    id="WebApp_ID" version="2.5">
 
    <!-- 配置DispatcherServlet -->
    <!-- The front controller of this Spring Web application, responsible for handling all application requests -->
    <servlet>
        <servlet-name>springDispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!-- 配置DispatcherServlet 的一個初始化參數,配置SpringMVC 配置文件的位置和名稱 -->
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!-- Map all requests to the DispatcherServlet for handling -->
    <servlet-mapping>
        <servlet-name>springDispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

5. 能夠看到web.xml配置中的classpath:springmvc.xml,這時候須要建立一個同名的springmvc.xml文件。

5.1 在src下新建一個springmvc.xml



5.2 選擇框中打鉤的選項,而後finish。

6. 在src下建立一個包。


6.1 在包下建立一個class,這裏我寫了個HelloWorld(平常)。


HelloWorld裏面的內容爲:

package com.wsq.springmvc.handler;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloWorld {

    /**
     * 1.使用RequestMapping 註解來映射請求的URL
     * 2.返回值會經過視圖解析器解析爲實際的物理視圖,對於InternalResourceViewResolver  視圖解析器,會作以下的解析
     * 經過  prefix + returnVal +後綴 這樣的方式獲得實際的物理視圖,而後作轉發操做。
     * 
     * /WEB-INF/views/success.jsp
     */
    @RequestMapping("/helloworld")
    public String hello(){
        
        System.out.println( "hello world");
        return "success";
        
    }
}

由於包已經建立好,因此這時就能夠在springmvc.xml中添加掃描的包。

<!-- 配置自定掃描的包 -->
    <context:component-scan base-package="com.wsq.springmvc"></context:component-scan>

7. 寫一個請求(index.jsp)。


內容爲:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
    <a href="helloworld">Hello World</a>
</body>
</html>

這時候要配置視圖解析器,也就是解析請求。打開springmvc.xml,加上:

<!-- 配置視圖解析器:如何把handler 方法返回值解析爲實際的物理視圖  -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
</beans>

最後的springmvc.xml長這樣:

這時由於配的前綴是/WEB-INF/views/。

因此要加一個在WEB-INF文件夾下要加一個文件夾views,並吧web.xml放在views下方。如圖:

最後的項目長這樣:

8. 最後開始運行

個人tomcat是9.0版本的,這裏eclipse會自動打開tomcat。

運行成功的最終結果爲:

以上的關於SpringMvc環境的搭建,以後還學習了接口的實現,短信發送的實現,定時器的實現,可是因爲內容比較多(一個搭建環境都這麼多了),沒有太多時間編寫博客,因此博客的內容就只有SringMvc環境的搭建了。

相關文章
相關標籤/搜索