1. 程式人生 > >SpringMVC第一個入門例子

SpringMVC第一個入門例子

這是我第一次使用SpringMVC框架的第一個例子

專案結構:


匯入springmvc包

配置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_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>SpringMVC01</display-name>
  
     <!-- 處理中文亂碼 -->
  <filter>
  	<filter-name>encodingFilter</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>
  </filter>
  <filter-mapping>
  	<filter-name>encodingFilter</filter-name>
  	<url-pattern>/*</url-pattern>
  </filter-mapping>
  <!-- SpringMVC控制器 -->
	<servlet>
   		 <servlet-name>dispatcherServlet</servlet-name>
   		 	<!-- 主要就是DispatcherServlet這個servlet起到分發的作用,對請求進行控制分發 -->
    		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
	  			<init-param>
	  				<!-- 每個springmvc專案都要一個springmvc專案配置位置,下面配置springmvc配置檔案的路徑 -->
		  			<param-name>contextConfigLocation</param-name>
		  			<param-value>/WEB-INF/mvc-config.xml</param-value>
	  			</init-param>
  			<!-- 當容器啟動時立即啟動 -->
  		<load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    	<servlet-name>dispatcherServlet</servlet-name>
    	<!-- 下面配置springmvc的過濾分發請求型別,可以是/ 或者*.action等 -->
    	<url-pattern>*.do</url-pattern>
	</servlet-mapping>
</web-app>

配置springmvc配置檔案

<?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:mvc="http://www.springframework.org/schema/mvc"
    xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    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/aop
            http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
            http://www.springframework.org/schema/tx
            http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
            http://www.springframework.org/schema/mvc
            http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-4.0.xsd">
 <!-- 檢視解析器,就是要給使用者返回什麼型別,檢視都放在哪裡?嗯,在這裡 -->
<bean id="viewResolver"
       class="org.springframework.web.servlet.view.InternalResourceViewResolver">
         <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
          <property name="prefix"   value="/WEB-INF/jsp/"/>
          <property name="suffix"   value=".jsp"/>
</bean>
<bean id="/hello.do" class="com.controller.HelloController">
</bean>
  
</beans>

編寫控制類HelloController.java

package com.controller;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;

public class HelloController implements Controller{

	public ModelAndView handleRequest(HttpServletRequest request,
			HttpServletResponse response) throws Exception {
		// TODO Auto-generated method stub
		System.out.println("-------hello world--------");//會在控制檯列印hello world
		return new ModelAndView("welcome");//並跳轉到welcome這個jsp頁面
	}

}

在WEB-INF下建一個jsp資料夾,在jsp資料夾下建welcome.jsp頁面

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!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>
	hello...
</body>
</html>


現在就可以測試了