1. 程式人生 > >小記如何有順序的搭建一個Spring的wen專案

小記如何有順序的搭建一個Spring的wen專案

如何有順序的搭建一個Spring的wen專案

一、新建一個簡單的maven,war工程

  eclipse下如有報錯,右鍵 Deployment 單擊 Generate 生成web.xml後可解決報錯

二、引入Spring的web依賴

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

版本根據情況選擇

三、編寫 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"
version="2.5"> <!-- 第一步:輸入ContextLoaderListener後根據程式碼提示快捷鍵直接生成下面區域配置 --> <!-- needed for ContextLoaderListener --> <context-param> <param-name>contextConfigLocation</param-name> <!-- 第二步:配置配置檔案及其所在路徑如下 --> <param-value
>classpath:applicationContext.xml</param-value> </context-param> <!-- Bootstraps the root web application context before servlet initialization --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- ----------------------至此均為第一步生成 ----------------------> </web-app>

四、建立配置檔案

  1)拷貝配置檔案第二步中您所配置的檔名稱(applicationContext.xml)

  2)在resources(即classpath根目錄下)右鍵選擇 New -> other... 輸入bean

  

  選擇上方選項建立配置檔案 

五、配置SpringMVC

在web.xml中 輸入 DispatcherServlet 快捷生成配置資訊

<?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"
    version="2.5">
    <!-- 第一步:輸入ContextLoaderListener後根據程式碼提示快捷鍵直接生成下面區域配置 -->
    <!-- needed for ContextLoaderListener -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <!-- 第二步:配置配置檔案及其所在路徑如下 -->
        <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
    <!-- Bootstraps the root web application context before servlet initialization -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 至此均為第一步生成-->
    
    <!-- 配置DispatcherServlet -->
    <!-- The front controller of this Spring Web application, responsible for handling all application requests -->
    <servlet>
        <servlet-name>spring</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!-- 刪除沒必要的 -->
        <load-on-startup>1</load-on-startup>
    </servlet>

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

六、建立配置檔案

用相同的步驟建立一個spring的xml檔案

注意這裡檔案的命名跟 DispatchServlet配置中的 (sevlet-name)-servlet.xml 組成

<?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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
        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-4.3.xsd">

    
    <context:component-scan base-package="cn.taosir.shiro"></context:component-scan>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

    <mvc:annotation-driven></mvc:annotation-driven>
    <mvc:default-servlet-handler/>
</beans>

然後建立相應的 cn.taosir.shiro 包

七、驗證是否成功

 建立一個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=UTF-8">
<title>Insert title here</title>
</head>
<body>
    <h4>taosir is learning...</h4>
</body>
</html>

配置啟動tomcat伺服器