Easter79 Easter79
3年前
springboot的起步依赖
!(https://oscimg.oschina.net/oscnet/f3acbe4cf3b00c68207e091c172d6b45a27.png)加载自动配置的方式2:!(https://oscimg.oschina.net/oscnet/40341228c10f7a56d82323a1d622521d92d.png) spring
Stella981 Stella981
3年前
JVM中的Safepoints
点击上方的蓝字关注我吧_程序那些事_!(https://oscimg.oschina.net/oscnet/dc95e4f667570fbf4dae8b47e7e7e537d65.gif)简介java程序员都听说过GC,大家也都知道GC的目的是扫描堆空间,然后将那些标记为删除的对象从堆空间释放,以提升可用的
Wesley13 Wesley13
3年前
Minix下的汇编
Minix下的汇编大多数的编译器,如TurboC/C,BorlandC/C,M$C/C,GCC,VC,编译过程都是"高级语言""asm""obj".(当然TurboPascal是个例外,它能跳过生成asm文件这一段而直接生成目标代码).Minix下的CC也不例外.一般来说,minix启动时执行的第一段代码就位于mp
Wesley13 Wesley13
3年前
mysql中的锁
主要介绍MyISAM的表锁和InnoDB的行锁一:MyISAM的表锁  1:设置读锁:locktable t\_myisam\_lockread;   unlocktables;//释放锁  !(https://oscimg.oschina.net/oscnet/f7d01a81a84b4a16a859296a23bf3e4d305
Easter79 Easter79
3年前
TiDB的简单应用
简介   TiDB是PingCAP公司受Google Spanner(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fresearch.google.com%2Farchive%2Fspanner.html) / F1(https://www.oschina.ne
Stella981 Stella981
3年前
Docker的基础命令
前言最近在学习docker,以下是我整理的一些docker的基础命令,欢迎小伙伴们在评论补充!curlfsSLhttps://get.docker.com/|sh 安装yumyinstalldocker安装(版本较老)systemctlstartdocker启动dockers
Wesley13 Wesley13
3年前
GIT的使用流程
GIT的使用流程1github注册流程1进入github官网:https://github.com/2注册一个自己的github账号3右上角选择Newrepository4进入createanewrepository选择你的仓库名填入:Repositoryname
Stella981 Stella981
3年前
Impala的Resource Management
https://docs.cloudera.com/documentation/enterprise/58x/topics/impala\_resource\_management.html(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fdocs.cloudera.com%2Fdo
Stella981 Stella981
3年前
SpringBoot下的SpringMVC
SpringBoot下的SpringMVC和之前的SpringMVC使用是完全一样的,主要有以下注解一、@Controller(https://my.oschina.net/u/1774615)SpringMVC的注解,处理h
Stella981 Stella981
3年前
SpringAop的简单实现
AOP当中的概念:1、切入点(Pointcut):在哪些类,哪些方法上切入(where);2、增强(Advice):早期翻译为通知,在方法执行的什么时机(when:方法前/方法后/方法前后)做什么(what:增强的功能);3、切面(Aspect):切面切入点增强,通俗点就是:在什么时机,什么地点,做