logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

代码管理器(GIT) 之文件上传

前言:企业中GIT、SVN之类的代码管理工具,本身就是我们应该掌握的东西,才会更方便的去操作和管理代码Git 之文件上传1.下载GIT配置基本信息2.搭建工作环境3.提交过程1.下载GIT配置基本信息GIT下载链接传送门:GIT下载配置基本信息$ git config --global user.name "你的用户名"$ git config --global user.email "你的邮箱"

#git#github#ssh
Vue.js 原生axios实现get和post请求 & PostMan请求数据格式

1.Vue.js 中 实现原生axios中的GET&POST请求1。导入axios库<script src="https://unpkg.com/axios/dist/axios.min.js"></script>2。实现GET请求 (https://autumnfish.cn/api/joke/list?[num=?])测试网址<script>docu

SpringCloud + SpringBoot + MyBatis整合 无法找到@MapperScan注解

环境:SpringCloud + SpringBoot + MyBaties1)、场景还原2)、解决措施1)、场景还原1.创建DAO并且给上注解@Mapper@Mapperpublic interface LoginDao {//新增用户方案public void addUser(PaymentUser paymentUser);//查询用户方案public PaymentUser selectU

#mybatis#spring#spring boot
Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedd(究极踩坑完美解决)

前言:Failed to configure a DataSource: ‘url’ attribute is not specified and no embedd这个错误想必大家已经非常非常熟悉了,关于数据库配置的问题,但是这种错误还有一种坑,随我来看1.对于这个错误,一般是没有配置数据源导致spring:datasource:# 当前数据源操作类型type: com.alibaba.drui

#java
VScode中设置vue代码的自动提示&主题

VScode中设置vue代码的自动提示下载VueHelper即可

SpringBoot编译target目录下没有resource下的文件(踩坑)

废话不多说,直接上图:那么导致这个的原因为什么呢?使用pom形式打包删除即可可能是maven的问题,clean一下即可

#maven
SpringBoot 图片上传(详解篇)

前言:SpringBoot在服务器内上传文件,是临时文件,在重启时候会生成另外的目录,也就意味着原来上传的图片在重启后就访问不到了。1.图片上传@PostMapping("/upload")public CommonResult insertDbMsPhoto(@RequestPart("photos") MultipartFile[] photos,@RequestParam("mid") St

Redis 报错:Invalid argument during startup: unknown conf file parameter

Redis所有配置项需要顶格,这个错误原因是有配置项未顶格,找到即可删除顶格D:\AllForSoft\redis>redis-server.exe redis.windows.confInvalid argument during startup: unknown conf file parameter :D:\AllForSoft\redis>redis-server.exe re

#redis
开启redis服务一闪而过(完美解决)

前言:相信很多人都遇到过这样的问题,在windows下Redis server启动一闪而过,那么遇到这样的情况应该怎样解决呢?Q:windows系统运行redis-server.exe一闪而过A:解决方案:通过cd 进入redis目录(也可以直接进入目录之后在地址栏回车cmd)输入redis-server.exe redis.windows.conf(因为启动redis需要用到这两个文件),出现下

#redis
暂无文章信息