logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

git bash操作

# 设置用户名 邮箱git config --global user.name "Your Name"git config --global user.email "email@example.con"# 查看git config user.namegit config user.email建立ssh连接# 生成密钥 ,进入github添加生成的密钥(id_rsa.pub内容)$ ssh-keyg

#git
Vue中splice的使用

splice(index,len,[item])它也可以用来替换/删除/添加数组内某一个或者几个值(该方法会改变原始数组)index:数组开始下标        len: 替换/删除的长度       item:替换的值,删除操作的话 item为空 删除://删除起始下标为1,长度为1的一个值(len设置1,如果为0,则数组不变)var arr = ['a','b','c...

Springboot druid数据库密码加密配置步骤

Springboot druid数据库密码加密配置步骤

#数据库#spring boot
springboot单元测试

当单元测试代码不需要Springboot功能,可以直接编写Junit测试代码public class JunitTest {@Testpublic void test() {System.out.println("Junit Test");}}spring框架提供测试模块spring-test,用于应用程序的集成测试,在springboot中,通过spring-boot-starter-test启

#spring boot
到底了