可以在自己的MvcConfig下添加如下代码 privatestaticfinalString[] CLASSPATH_RESOURCE_LOCATIONS ={"classpath:/META-INF/resources/", "classpath:/resources/","classpath:/static/", "classpath:/public/"}; @OverridepublicvoidaddResourceHandlers(ResourceHandlerRegistry registry) {if(!registry.hasMappingForPatt...
可以在自己的MvcConfig下添加如下代码 privatestaticfinalString[] CLASSPATH_RESOURCE_LOCATIONS ={"classpath:/META-INF/resources/", "classpath:/resources/","classpath:/static/", "classpath:/public/"}; @OverridepublicvoidaddResourceHandlers(ResourceHandlerRegistry registry) {if(!registry.hasMappingForPatt...
No mapping found for HTTP request with URI [/ssmDemo/test] in DispatcherServlet 2019-12-09 14:20 −可能的问题: 1、访问路径有问题 2、没有扫描到注解 解决方法: 配置文件:开启注解,扫描到@Controller和@RequestMapping <context:component-scan base-package="com" /> ... ...