maven项目分为src目录,resource目录,test/src目录,test/resource目录:
其中src和resource对应到项目的target\classes目录,如果在src目录调用classpath,则class的根目录为target\classes;
test/src,test/resource对应到test-classes目录,如果在test/src目录调用classpath,则class的根目录为target\test-classes;
原文:https://www.cnblogs.com/zhihaospace/p/12329009.html