public partial class App : Application { public App() { this.Startup += (o1, e1)=>{ string commandLine = Environment.CommandLine; string appFilePath = ...
分类:
移动开发 时间:
2020-11-08 17:59:30
阅读次数:
30
前言 来啦老铁! 笔者学习Spring Boot有一段时间了,附上Spring Boot系列学习文章,欢迎取阅、赐教: 5分钟入手Spring Boot; Spring Boot数据库交互之Spring Data JPA; Spring Boot数据库交互之Mybatis; Spring Boot视 ...
分类:
编程语言 时间:
2020-11-08 16:42:19
阅读次数:
25
MongoDB3.0挂起原因?WiredTiger实现:一个LRUcache深坑引发的分析导语:计算机硬件在飞速发展,数据规模在急速膨胀,但是数据库仍然使用是十年以前的架构体系,WiredTiger尝试打破这一切,充分利用多核与大内存时代来重新设计数据库引擎,达到7-10倍写入性能提升。但一些先行使用的同行发现新版有间歇性挂起的问题,本文由袁荣喜向「高可用架构」投稿,通过分析WiredTiger源
分类:
数据库 时间:
2020-11-07 16:59:07
阅读次数:
27
TechRoad 1. Architecture <Java Application architecture> modular, Spring context config <EIS> technology decision, base eis-platform-brms <MS PPP> cha ...
分类:
其他好文 时间:
2020-11-07 16:51:15
阅读次数:
24
1,创建module,pom引入依赖:spring-boot-configuration-processor 2,创建entity,类上加注解:@ConfigurationProperties(prefix="sms"),这样可以读取application.yml文件,把文件的属性映射到class的 ...
分类:
编程语言 时间:
2020-11-07 15:49:12
阅读次数:
18
前言来了来了,50道Java集合面试题也来啦~已经上传github:https://github.com/whx123/JavaHome1.Arraylist与LinkedList区别可以从它们的底层数据结构、效率、开销进行阐述哈ArrayList是数组的数据结构,LinkedList是链表的数据结构。随机访问的时候,ArrayList的效率比较高,因为LinkedList要移动指针,而Array
分类:
编程语言 时间:
2020-11-07 15:42:45
阅读次数:
21
前置知识 ajax形式post提交数据的content-type有主要常用三种 application/x-www-form-urlencoded multipart/form-data(上传文件) application/json 原生的django对于content-type为applicati ...
分类:
移动开发 时间:
2020-11-06 01:26:29
阅读次数:
24
[default] callback_whitelist = profile_tasks # The best way I’ve found to time the execution of Ansible playbooks is by enabling the profile_tasks cal ...
分类:
其他好文 时间:
2020-11-04 19:01:00
阅读次数:
20
this.Close(); 只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出; Application.Exit(); 强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出; Application.ExitThread ...
分类:
编程语言 时间:
2020-11-04 18:44:34
阅读次数:
18