新建ssm框架遇到Artifact hisports:war exploded: Error during artifact deployment. See server

在启动tomcat后,出现Artifact hisports:war exploded: Error during artifact deployment. See server错误

也许是web-info里没有application.xml文件或者是web.xml里未指定applicationContext.xml位置

如果在上下文中没有指定contextConfigLoction配置文件的位置,则会默认去WEB-INF中去寻找对应的配置文件。 
理论上classpath的默认路径是WEB-INF/classes 
所以解决办法就是在context-param中定义。 
在web.xml中添加下面代码
 


  
    contextConfigLocation
    classpath:applicationContext.xml
  

 

你可能感兴趣的:(java随手)