This is the first part of the cucumber-jvm tutorial. We start off with an empty Eclipse project. This project has the following folders: * [requirements](requirements) - this is where you store ...
jvm的类加载顺序是bootstrap类加载器,extclassloader加载器,最后是appclassloader用户加载器,分别加载的是jdk/bin ,jdk/ext以及用户定义的类目录下的类(一般通过ide指定),一般核心类都由bootstrap和ext加载器来加载,appclassloader用于加载自己写的类。