bbs icon indicating copy to clipboard operation
bbs copied to clipboard

本地调试根目录找不到

Open lybing opened this issue 5 years ago • 1 comments

在初始化积分日志bean的工具类中,有一段是“把生成的class文件写入文件”,在获取根目录(getRootPath)的代码是:

//windows下
if("\\".equals(File.separator)){   
	rootPath  = classPath.substring(1,classPath.indexOf("/WEB-INF/classes"));
	rootPath = rootPath.replace("/", "\\");
}

我的classPath:D:/My/opensrc/GitHub/bbs/target/classes 所以导致了if里面第一行会报错:String index out of range: -2

lybing avatar Jan 12 '20 05:01 lybing

正常的路径是这样 ......\项目\WEB-INF\classes

你这个路径识别不了

diyhi avatar Jan 12 '20 07:01 diyhi