SpringMVC demo

1、创建工程Dynamic Web Project

SpringMVC demo_第1张图片

2、导入相关包

SpringMVC demo_第2张图片

3、导入测试网页文件

SpringMVC demo_第3张图片

4、创建和编写配置文件

打开上图显示的web.xml文件,编写内容如下:


<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>web19_ssm_springmvcdisplay-name>
  <welcome-file-list>
    <welcome-file>index.htmlwelcome-file>
    <welcome-file>index.htmwelcome-file>
    <welcome-file>index.jspwelcome-file>
    <welcome-file>default.htmlwelcome-file>
    <welcome-file>default.htmwelcome-file>
    <welcome-file>default.jspwelcome-file>
  welcome-file-list>
  
  <servlet>
    <servlet-name>springmvcservlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
    
    <init-param>
      <param-name>contextConfigLocationparam-name>
      <param-value>classpath:springmvc.xmlparam-value>
    init-param>
  servlet>
  
  <servlet-mapping>
    <servlet-name>springmvcservlet-name>
    
    <url-pattern>*.zzzurl-pattern>
  servlet-mapping>
web-app>

上面内容中的DispatcherServlet路径可以通过下图方法获取:
SpringMVC demo_第4张图片
在src目录下新建springmvc.xml文件
SpringMVC demo_第5张图片
选择Spring Config Editor,前提是先安装SpringIDE(安装详细请看前面文章)
SpringMVC demo_第6张图片
勾选需要的头部声明命名空间
SpringMVC demo_第7张图片
编写springmvc内容,这里的com.zzz是我的根包目录,各位根据自己的项目调整


<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	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-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">

	
	<context:component-scan base-package="com.zzz">context:component-scan>

beans>

5、编写测试文件

先创建文件
SpringMVC demo_第8张图片
编写内容如下:

package com.zzz.controller;

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

/**
 * @ClassName:  ItemController   
 * @Description: 接受请求,显示页面
 * @author Administrator
 * @date:   2022年3月19日 下午4:42:01      
 * @Copyright:
 */
@Controller  //表示web层,显示页面
public class ItemController {
	
	@RequestMapping(value="list.zzz")  //请求网址的后缀路径
	public ModelAndView list() {
		ModelAndView mav = new ModelAndView();
		
		mav.setViewName("/item_list.jsp");
		
		return mav;
	}
}

6、运行测试

小bug,为了使用头部声明,需要先导入相应的dtd文件
SpringMVC demo_第9张图片
SpringMVC demo_第10张图片
SpringMVC demo_第11张图片
SpringMVC demo_第12张图片
关闭springmvc.xml重启。

运行一下服务器
SpringMVC demo_第13张图片
输入后缀网址后显示页面成功
SpringMVC demo_第14张图片

你可能感兴趣的:(Java,java,spring)