今天在做web服务的时候遇到了一个问题,很是头疼,

No services have been found,就是它!!!

    我的解决方案是,在web.xml里面加上:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>
 
  <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
   </listener>


只怪当初太初心,没有配置spring,才导致的错误

相关文章:

  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-03-06
  • 2021-09-14
  • 2021-04-05
猜你喜欢
  • 2022-12-23
  • 2021-11-06
  • 2021-05-23
  • 2022-12-23
  • 2021-12-25
  • 2021-07-14
  • 2022-12-23
相关资源
相似解决方案