IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringMVC的简单使用 -> 正文阅读

[Java知识库]SpringMVC的简单使用

SpringMVC的简单使用

  • 创建maven项目(不使用webapp模板的情况,使用则忽略)

pom中加<packaging>war</packaging>
在src/main下面建个文件夹webapp 并添加为web会自动生成/WEB-INF/和web.xml文件
在这里插入图片描述
修改webapp路径,和建webapp文件夹路径一样
在这里插入图片描述

  • 导入需要的pom依赖
    <!-- springMVC所需依赖 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.3.9</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>4.0.1</version>
            <scope>provided</scope>
        </dependency>
  • 在resources下创建springmvc-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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.ljw.controller"></context:component-scan>
    <!-- 视图名称解析器  解析 /WEB-INF/views/ 下的.jsp文件-->
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
</beans>
  • 在WEB-INF下面创建views包、hello.jsp等jsp文件

(WEB-INF下的jsp文件必须通过控制器转发才能访问到,直接输入url访问不到)
![在这里插入图片描述](https://img-blog.csdnimg.cn/29be0df0bb414be7afd54c0affa4155e.png

  • 写web.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<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>
        <!-- springmvc前端控制器 -->
        <servlet-name>springMVC</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <!-- 初始化springmvc-servlet.xml文件 -->
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc-servlet.xml</param-value>
        </init-param>
        <!-- 服务器启动的时候直接初始化servlet -->
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <!--/ 所有的访问地址都由DispatcherServlet解析 -->
        <servlet-name>springMVC</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>
  • 在java下面创建类MyController
@Controller//负责注册一个bean 到spring 上下文中
@RequestMapping(value = "/test01")//添加一层路径
public class MyController {
    //value注解为控制器指定可以处理哪些 URL 请求
    //method 设置请求的方式为GET   若设置为post 通过地址栏访问则会报错  405请求方式错误
    @RequestMapping(value = "/hello",method = RequestMethod.GET)
    public String HelloCon(){
        return "hello";
    }
    //访问路径的值可以是数组,元素中的值都可以访问到方法
    //属性param中的参数,url请求必须有这两个参数,如果没有报错  400参数不匹配
    @RequestMapping(value = {"hi","hihi"}, params = {"username","password"})
    public String hi(String username, String password){
        System.out.println("username:"+username+",password:"+password);
        return "hi";//请求转发
    }
    //restful风格
    //@PathVariable("name") 匹配属性
    //url传参数h/zhangsan/123456
    @RequestMapping("h/{name}/{pwd}")
    public String h(@PathVariable("name") String username, @PathVariable("pwd") String password){
        System.out.println("username:"+username+",password:"+password);
        return "redirect:/test02/hello02";//重定向 url请求h直接跳转到hello02

    }
  • 在java下面创建类MyController2
@Controller
@RequestMapping("/test02")
public class MyController2 {
    @RequestMapping("/hello02")
    public String helloCon(){
        return "hello02";
    }
}

hello.jsp文件

<html>
<head>
    <title></title>
</head>
<body>
    <p>hello</p>
    <a href="${pageContext.request.contextPath}/test02/hello02">访问hello02</a>
</body>
</html>

hello02.jsp

<html>
<head>
    <title></title>
</head>
<body>
<p>hello2</p>
<a href="${pageContext.request.contextPath}/test01/hi">访问hi</a>

</body>
</html>

hi.jsp

<html>
<head>
    <title></title>
</head>
<body>
<p>hi</p>
<a href="${pageContext.request.contextPath}/test01/hello">访问hello</a>

</body>
</html>

地址跳转问题

从test01/hello------>test02/hello02的话

需要从项目根路径开始设置pageContext.request.contextPath取到项目的根路径
避免频繁进出路径

<body>
    <p>hello</p>
    <a href="${pageContext.request.contextPath}/test02/hello02">访问hello02</a>
</body>
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-09-19 07:51:35  更:2021-09-19 07:53:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 16:48:57-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码