SpringMVC環境搭建和基本介紹
阿新 • • 發佈:2018-12-11
SpringMVC
基本介紹:
- SpringMVC幫組我我們實現程式應用層面的分離。
- 資料封裝在POJO類中屬於模型層。
- 檢視層解析、渲染資料。
- 由Controller負責將資料給View進行解析、渲染。
- SpringMVC是基於MVC的web框架。 由Controller負責將資料給View進行解析、渲染。
搭建環境:
1、建立javaEE專案 2、匯入相關jar包 3、編寫web.xml檔案
<!-- 配置dispatcherServlet --> <servlet> <servlet-name>dispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 配置檔案路徑,這段可以不用寫 --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
4、在WEB-INF包下面建立Dispatherservlet-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:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="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.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"> <!-- 配置自動掃描的包 --> <context:component-scan base-package="com.xhs"></context:component-scan> <!-- 配置檢視解析器,如何把handler方法返回值解析為實際物理檢視 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/pages/"></property> <property name="suffix" value=".jsp"></property> </bean> <!-- 配置檢視 BeanNameViewResolver 解析器:使用檢視的名字來解析檢視 --> <!-- 通過order屬性來定義檢視解析器的優先順序,order值越小,則優先順序越高 --> <bean class="org.springframework.web.servlet.view.BeanNameViewResolver"> <property name="order" value="100"></property> </bean> <!-- 配置國際化資原始檔 --> <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basename" value="i18n"></property> </bean> <mvc:view-controller path="/success" view-name="success" /> <!-- 在實際開發中通常都需配置 mvc:annotation-driven 標籤 --> <mvc:annotation-driven></mvc:annotation-driven> </beans>
5、在src包下面建立一個class類`
package com.xhs; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("springmvc") public class springmvc1 { @RequestMapping("hello") public String hello() { System.out.println("進入此方法"); return "success"; } }
6、在index.jsp(在專案執行過程中預設先執行index.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>
環境搭建
<br>
<a href="springmvc/hello">點選挑轉</a>
</body>
</html>
7、當java頁面執行成功時跳轉的頁面
< %@ 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>
成功介面
</body>
</html>