|
|
Linux命令行Tips
Java的类加载器
什么是类加载器
基本职责就是根据一个指定的类的名称,找到或者生成其对应的字节代码,然后从这些字节代码中定义出一个 Java 类,即 java.lang.Class类的一个实例
也可以加载图片等应用所需的资源
首先关注:java的内置类加载器的几种类型
启动类加载器(Bootstrap ClassLoader):这个类加载器是Java虚拟机本身的一部分,这个类将负责存放\lib 目录下的类。要注
...
Java问题及Hacks汇总
IO
Java路径问题最终解决方案—可定位所有资源的相对路径寻址
用File.Seperator构造路径 // more…
ResourceBundle读取配置文件
加载、链接与初始化
ClassLoader详解 // 深入分析ClassLoader
库
Guava
多线程
估算线程池的合理大小
Restful Api介绍资源汇总
http://mengkang.net/620.html?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
http://mccxj.github.io/blog/20130530_introduce-to-rest.html
我所理解的restful web api(设计篇)
netty restful s
...
架构是一种思维模式(笔记)
GC专家系列-笔记
Docker学习笔记
Git Fantastic Usages
Git撤销修改操作指南
问题
ItelliJ 重命名文件后git commit error的一个坑
I also faced the almost same situation, in my case I have created a file and added to git (using git add ), after adding to git I have renamed the file. While committing I got the same type error.1Error:error: pathspec 'app/src/main/java/blahblah/FooBar.java' did not match any file(s) known to git.