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知识库 -> Springboot学习笔记 -> 正文阅读

[Java知识库]Springboot学习笔记

入门

创建一个springboot项目

在这里插入图片描述

编写一个get接口

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController //返回是json格式
public class Hello {
    @GetMapping("/hello")   //get请求的路由  Request Post
    public String Hello() {
        return "get-hello";
    }
}

添加依赖

在pom.xml文件中添加
例如添加lombok

 <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
</dependency>

基础

web开发

静态资源访问

在这里插入图片描述

其中resources 下的 /static /public /resource /META-INF 文件下的资源为默认静态资源
在网页中可直接访问
在这里插入图片描述

当url相同时候,先请求动态资源,才会请求静态资源

改变静态资源默认路径

spring:
  mvc:
#    自定义请求静态资源前缀
    static-path-pattern: /res/**
  web:
    resources:
      static-locations:
      #    自定义静态资源文件路径
        [classpath:/stat/]

在这里插入图片描述
如出现中文乱码,修改一下配置
1,
2 application.properties配置

server.servlet.encoding.charset=utf-8
server.servlet.encoding.force=true
server.servlet.encoding.enabled=true

欢迎页

静态资源路径下访问index.html
不能自定义访问前缀
可以自定义默认文件

  mvc:
    static-path-pattern: /res/**

否则无法正确访问
在这里插入图片描述

请求方式

Controller.Hello
四种请求方式

package com.example.demoday3.Controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Hello {
    @RequestMapping(value = "/user",method = RequestMethod.GET)
    public String getUser(){
        return "getUser";
    }
    @RequestMapping(value = "/user",method = RequestMethod.POST)
    public String postUser(){
        return "postUser";
    }
    @RequestMapping(value = "/user",method = RequestMethod.DELETE)
    public String deleteUser(){
        return "deleteUser";
    }
    @RequestMapping(value = "/user",method = RequestMethod.PUT)
    public String putUser(){
        return "putUser";
    }
}

static的index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <form action="/user" method="post">
        <input type="text" name="userName"/>
        <input type="submit">
    </form>
</body>
</html>

因为得form表单method只有get和post方式
所以要在配置添加

spring:
  mvc:
    hiddenmethod:
      filter:
#        能够处理delete和put请求 根据<input type="_method" name="put" 处理另外的请求
        enabled: true
    
 <form action="/user" method="post">
        <input name="_method"  type="hidden" value="delete"/>
        <input type="text" name="userName"/>
        <input type="submit" value=delete>
    </form>
    <form action="/user" method="post">
        <input name="_method"  type="hidden" value="PUT"/>
        <input type="text" name="userName"/>
        <input type="submit" value="put">
    </form>
如果使用postman,可以直接使用delete、put方式,不用添加以上 filter配置。

另外,可以自定义 name="_method"的名称。
方法如下
在这里插入图片描述

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-06-29 18:51:47  更:2022-06-29 18:54:29 
 
开发: 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年12日历 -2024/12/4 1:54:17-

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