上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 46 下一页
摘要: 1.下载安装 https://dl.min.io/server/minio/release/windows-amd64/minio.exe 2.启动 powershell下 C:\minio 文件存储目录 .\minio.exe server C:\minio --console-address : 阅读全文
posted @ 2023-10-19 23:36 lwx_R 阅读(708) 评论(0) 推荐(0)
摘要: 1.@RequestParam Content-Type: application/x-www-form-urlencoded 一般是form直接发送请求 postman 使用form-data来传值 2.@RequestBody contentType: "application/json; ch 阅读全文
posted @ 2023-10-10 23:50 lwx_R 阅读(22) 评论(0) 推荐(0)
摘要: vue3.3.4 + vite4.4.9 1.路由 1.1 安装和配置 npm install vue-router@4 router/index.js import { createRouter, createWebHashHistory, } from 'vue-router' import I 阅读全文
posted @ 2023-10-07 14:06 lwx_R 阅读(36) 评论(0) 推荐(0)
摘要: 1.父模块 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.0.5</version> </parent> <pro 阅读全文
posted @ 2023-10-05 20:08 lwx_R 阅读(87) 评论(0) 推荐(0)
摘要: 1.文件相关 ls ll 显示目录中文件及其属性信息 mkdir name :创建目录 cp 源文件名 目标文件名 : 复制 mv 源文件名 目标文件名 :移动文件 unzip name.zip: 解压 pwdx 进程号 查看进程位置 rm -rf 目录名 / rm -f 文件名 2.文件查看 ta 阅读全文
posted @ 2023-10-04 20:23 lwx_R 阅读(21) 评论(0) 推荐(0)
摘要: 1.dependencyManagement 通过它来管理jar包的版本,让子项目中引用一个依赖而不用显示的列出版本号。 统一管理项目的版本号,确保应用的各个项目的依赖和版本一致 dependencyManagement里只是声明依赖,并不实现引入,因此子项目需要显式的声明需要用的依赖。如果不在子项 阅读全文
posted @ 2023-10-04 19:22 lwx_R 阅读(46) 评论(0) 推荐(0)
摘要: JDK17 1.同时配置Java8和17环境 用户变量 2.新特性 public static void main(String[] args) { // 1.文本框 String text = """ { "name": "小黑说Java", "age": 18, "address": "北京市西 阅读全文
posted @ 2023-10-04 18:41 lwx_R 阅读(50) 评论(0) 推荐(0)
摘要: 1.动态SQL Mybatis提供的拼接Sql语句的机制。 1.if <select id="listSearchStudents" resultType="entity.Student"> select * from stu where sname = #{sname} <if test="pho 阅读全文
posted @ 2023-10-04 18:00 lwx_R 阅读(25) 评论(0) 推荐(0)
摘要: Java17以上 1.依赖 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.0.0</version> <relat 阅读全文
posted @ 2023-10-04 17:45 lwx_R 阅读(131) 评论(0) 推荐(0)
摘要: 1.原因 某处使用position:fixed 2.解决 <el-dialog title="项目选择" :visible.sync="dialogTableVisible" width="90%" append-to-body> 阅读全文
posted @ 2023-09-19 00:11 lwx_R 阅读(113) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 46 下一页