web.xml中的classpath指项目中的哪个路径

以springmvc项目为例,将其打包成springmvc.war文件
web.xml中的classpath指项目中的哪个路径_第1张图片
发现底下有3个文件,进去WEB-INF
web.xml中的classpath指项目中的哪个路径_第2张图片
我们通常说的classpath指的是WEB-INF下的classes文件
web.xml中的classpath指项目中的哪个路径_第3张图片
因为config文件和classes文件是同级目录所以报错
报错信息:parsing XML document from class path resource [config/springMVC.xml]; nested exception is java.io.FileNotFoundException : class path resource [config/springMVC.xml] cannot be opened because it does not exist
说是springMVC.xml没找到
web.xml中的classpath指项目中的哪个路径_第4张图片
而我的项目中config文件是放在webapp->WEB-INF下的,所以我要将config文件移到src->main文件夹下

web.xml中的classpath指项目中的哪个路径_第5张图片
发现在.war文件下config文件就在WEB-INF->classes文件下了
web.xml中的classpath指项目中的哪个路径_第6张图片
说明springMVC.xml配置文件可以被找到,也就是说 classpath对应的路径其实就是项目中的src文件中。
后面测试:如果你将config文件放在src->main下也是可以被找到的,放在src->main->source也是可以

你可能感兴趣的:(java)