2016-05-06 02:14:31,132 [WARN] [org.springframework.web.servlet.PageNotFound] - No mapping found for HTTP request with URI [/LoveBN/] in DispatcherServlet with name 'LoveBN'
出现这个问题,通常是因为我们的web.xml没有配置正确
<servlet> <servlet-name>LoveBN</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:config/LoveBN-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>LoveBN</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping>请将上面的 “ /* “ 改为“ / “ 即可
爆款云服务器s6 2核4G 低至0.46/天,具体规则查看活动详情