因爲咱們的團隊項目最終決定使用SpringMvc來搭建後端的框架,因此我學習了SpringMvc環境的搭建以及其餘的一些有關的知識。本篇技術博客是學習了尚硅谷的springmvc視頻後,同時參考了網上的Eclipse中SpringMVC框架環境搭建寫下的,在本篇博客的截圖中也作了一些註釋說明,以便理解其中的代碼。html
<?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>
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"; } }
<!-- 配置自定掃描的包 --> <context:component-scan base-package="com.wsq.springmvc"></context:component-scan>
<%@ 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>
<!-- 配置視圖解析器:如何把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>