No Spring WebApplicationInitializer types detected on classpath 加载不到配置文件或找不到spring主配置

第一种情况

在web.xml当中配置错误,没有正确的引入spring的配置文件。找不到时,报告次错误。

检查配置文件,引入是否正确。

classpath:springconfig.xml ,这个格式的配置为读取本项目classpath下的文件

classpath*:springconfig.xml 这个格式的配置为读取本项目下或者是jar包的classpath下的配置文件。多个同名只读第一个。

第二种情况

No Spring WebApplicationInitializer types detected on classpath 

tomacat 服务器加载jar 不全 ,导致启动错误。

使用编译器 maven clean  下。在clean 下项目。

第三种情况

lag4j.properties 配置文件的加载 

这个配置文件一般要配置到当前目录中。web.xml 当中引入日志配置文件时,使用classpath*:log4j.properties 配置参数,如果文件在jar包,会报错:找不到此文件。

 

 

你可能感兴趣的:(spring,log4j)