SpingMVC出现The origin server did not find a current representation for the target resource or is not

可能是SpringMVC配置文件中没有添加注解扫描包,或者没有相应的资源配置

  <!-- 默认扫描的包路径 -->  
    <context:component-scan base-package="cn.controller" />  
    <!-- 添加注解驱动 -->  
    <mvc:annotation-driven />  

猜你喜欢

转载自blog.csdn.net/qq_36677358/article/details/84568674