摘要:
1、分支创建、查看、删除、切换 1.1、创建本地分支 git branch aaa 1.2、分支查看 本地分支 git branch 远程分支 git branch -r 远程和本地分支 git branch -a 本地、远程分支关联关系 git branch -vv 1.3、删除本地分支 删除之前 阅读全文
摘要:
参考博客: https://blog.csdn.net/u012129558/article/details/79947477 阅读全文
摘要:
1、springboot项目中引入jquery.js 路径书写 2、下载文件使用ajax方法,能访问后台方法,但是浏览器没响应,要使用 window.location.href, 3、url中的参数值带特殊符号,需要encodeURI()编码,见上图 阅读全文
摘要:
参考地址: https://blog.csdn.net/qq_40694671/category_11533485.html 阅读全文
摘要:
1.文件颜色含义(java/php/c++/c) 2.方法含义 3.文件夹含义 4.可见性含义 阅读全文
摘要:
转载于:https://m.jb51.net/article/131791.htm 阅读全文
摘要:
参考:https://www.cnblogs.com/kakafra/p/3336020.html 阅读全文
摘要:
从SpringBoot的入口程序说起: 1、入口类上面@SpringBootApplication注解是一个组合而成的注解,主要有下面三个: @SpringBootConfiguration (读取配置文件) @EnableAutoConfiguration (开启自动配置) @ConmonentS 阅读全文
摘要:
一、相关的配置文件 大致包括如下配置文件: 1、SqlMapConfig.xml 2、applicationContext-dao.xml Jdbc.properties 阅读全文
摘要:
1、设置用户名: create user 用户名 identified by '密码'; 2、授权所有权限: grant all on 数据库.* to '用户名'@'%'; 3、刷新生效: flush privileges; 阅读全文