摘要: 1.基本语法,简要语句。 #显示所有数据库 show dbs #操作此数据库 use [db] #创建集合(表) db.createCollectin("[table]") #在集合中插入一条json数据(此方法可以不用上一步直接创建集合) db.[table].insert({...}) #显示所 阅读全文
posted @ 2018-11-12 10:34 思丿无邪 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 例如: 1.进入e盘 2.查看E盘下所有文件 3.进入指定文件夹 阅读全文
posted @ 2018-11-02 10:09 思丿无邪 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/huangminwen/p/6041168.html 阅读全文
posted @ 2018-10-31 15:41 思丿无邪 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-10-25 15:22 思丿无邪 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 实现原理 原理 target.set + source的属性名(source.get + source的属性名):所有source必须有get方法,target必须有set方法 一、 springframework.beans.BeanUtils.copyProperties(A,B):把A对象的属 阅读全文
posted @ 2018-10-25 15:02 思丿无邪 阅读(5523) 评论(0) 推荐(0) 编辑
摘要: 关于Eclipse中GitLab的使用,这篇博客写的比较好。 https://www.cnblogs.com/wxjnew/p/9146863.html eclipse导入gitlab项目 https://www.cnblogs.com/wxjnew/p/9146872.html 阅读全文
posted @ 2018-09-30 14:53 思丿无邪 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: # 认识与入门 Markdown## 标题总共六级标题,建议在#号后加一个空格 ## 无序列表(- 或 *)- 1- 2- 3或者* 1* 2* 3 ## 有序列表(1.2.3.)1. 1232. 1233. 123 ## 引用> 这里是引用 ## 插入链接[baidu](http://baidu. 阅读全文
posted @ 2018-09-25 16:46 思丿无邪 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 我这个写的比较简略,是自己短时间记录的可能只适合自己看,新手或者不懂的建议看看下面大神这篇: https://www.cnblogs.com/homejim/p/9613205.html 1.MyBatis基础配置文件:mybatis_config.xml 2.映射文件Role.xml 3.定义一个 阅读全文
posted @ 2018-09-19 14:35 思丿无邪 阅读(166) 评论(2) 推荐(0) 编辑
摘要: #include #include #define N 50 int main(){ char s1[N],s2[N]; int dp[N][N],i,j,max_len=0; gets(s1); gets(s2); for(i=0;i0&&j>0)... 阅读全文
posted @ 2018-04-09 09:49 思丿无邪 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 代码: 阅读全文
posted @ 2018-01-15 15:58 思丿无邪 阅读(75) 评论(0) 推荐(0) 编辑