入门Spring-MVC——Hello

入门Spring-MVC——Hello

1.新建一个普通的maven项目

入门Spring-MVC——Hello_第1张图片

2.添加web的支持

入门Spring-MVC——Hello_第2张图片

3.配置maven路径为自己下载的maven路径

入门Spring-MVC——Hello_第3张图片

4.配置Tomcat

入门Spring-MVC——Hello_第4张图片

入门Spring-MVC——Hello_第5张图片

入门Spring-MVC——Hello_第6张图片

导入spring-webmvc
<dependencies>
    <dependency>
        <groupId>org.springframeworkgroupId>
        <artifactId>spring-webmvcartifactId>
        <version>5.1.9.RELEASEversion>
    dependency>
dependencies>

在resources下新建一个springmvc-servlet.xml

先置空

SpringMVC 给我们提供了一个 DispatcherServlet,我们只需要将这个Serlevt注册到web.xml即可!

web.xml


<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">

        
        <servlet>
            <servlet-name>DispatcherServletservlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>

            
            <init-param>
                <param-name>contextConfigLocationparam-name>
                <param-value>classpath:springmvc-servlet.xmlparam-value>
            init-param>

            
            <load-on-startup>1load-on-startup>

        servlet>
    
    
        <servlet-mapping>
            <servlet-name>DispatcherServletservlet-name>
            <url-pattern>/url-pattern>
        servlet-mapping>
    
web-app>

WEB-INF目录下新建一个views目录,并在其下建立一个hello.jsp文件

<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    hello


    

Hello!

在main目录下建立一个controller包,并在该层创建一个HelloController类,先为空。

编写springmvc-servlet.xml配置文件


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        https://www.springframework.org/schema/mvc/spring-mvc.xsd">
    
    

    
    
    <context:component-scan base-package="com.cm.controller"/>
    
    
    <mvc:annotation-driven/>
    
    
    <mvc:default-servlet-handler/>
	

    
    
    <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"/>
        <property name="suffix" value=".jsp"/>
    bean>

beans>

填写HelloController类

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

@Controller
public class HelloController {
     

    @RequestMapping("/hello")
    public String hello() {
     

        System.out.println("控制台打印Hello!");
        return "hello";
    }
}

运行服务器后,一开始一般都不会成功,因为没有导出spring依赖:

入门Spring-MVC——Hello_第7张图片

这个时候需要检查项目的结构,建立一个lib目录,把需要的包加进去。如图:

入门Spring-MVC——Hello_第8张图片

成功运行后,就会出现Hello!了。

入门Spring-MVC——Hello_第9张图片

它的特别之处

一个网站核心交互

  • 前端传值

  • 后台处理数据,返回数据给前端

  • 页面跳转控制 url 对应后台的请求

更改HelloController

运用Model给前端传递参数

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloController {
     

    @RequestMapping("/hello")
    public String hello(Model model) {
     

        System.out.println("控制台打印Hello!");

        model.addAttribute("msg", "Hello! Spring-MVC");
        return "hello";
    }
}

运用EL表达式

将后端的数据被前端读取
<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    hello


    

${msg}

运行结果

入门Spring-MVC——Hello_第10张图片

你可能感兴趣的:(java,spring,web,mvc,spring,boot)