摘要:
# 应用名称spring.application.name=hello_mybatis#下面这些内容是为了让MyBatis映射#指定Mybatis的Mapper文件mybatis.mapper-locations=classpath:mappers/*xml#指定Mybatis的实体目录mybati 阅读全文
摘要:
This application has no explicit mapping for /error, so you are seeing this as a fallback.Sun Nov 05 21:36:57 CST 2023There was an unexpected error (t 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" ><ma 阅读全文
摘要:
prop 属性绑定了字段名 name,在表单验证时,就会找到其内部的表单组件绑定的变量 ruleForm.name 的值是否符合 rules 中与 name 对应的验证规则 ## 分页思路 ```SELECT * from sys_user limit 0,2; --第一页-- (2 -1) * 2 阅读全文
摘要:
# 解决方案 vue-router.esm.js:2046 Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: "/manage/user".vue-router. 阅读全文
摘要:
## vue安装axios: `npm i axios -S` ## request.js封装 ```import axios from 'axios' const request = axios.create({ baseURL: '/api', timeout: 5000}) // reques 阅读全文
摘要:
概念: JavaScript Object Notation JavaScript对象表示法 Person p = new Person();p.setName("张三");p.setAge(23);p.setGender("男"); var p = {"name":"张三","age":23,"g 阅读全文
摘要:
java异常 异常分类 Throwable是所有异常子类的超类 exception子类:编译器异常,进行编译,java程序出现问题 error子类:错误,必须修改源代码 产生过程 JVM判断异常,并产生包含异常信息的对象,如果异常产生的方法没有try--catch方法,如果没有则把异常对象返回mai 阅读全文
摘要:
标题 一级标签:#+标题 二级标题:##+标题 …… 字体 斜体:* * 加粗:** ** 删除线:~~ ~~ 引用 ">" 图片 超链接 [链接](baidu.com) 列表 数字+逗号+空格 表格 直接插入 代码 ”```“+语言 阅读全文
摘要:
一、SpringBoot 配置Redis 1.1 pom 引入spring-boot-starter-data-redis 包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-start 阅读全文