目录
是什么原因造成这种区别的呢?为什么一开始没用的时候可以,添加了默认servlet之后就不行了呢?
1.后端maven中央仓库
2.jquery官网下载
网址:https://jquery.com/download/
3.mybatis文档中文版
网址:http://www.mybatis.org/mybatis-3/zh/getting-started.html
4.mybatis英文文档
网址:http://www.mybatis.org/generator/index.html
5.mybatis生成逆向工程代码及网址
网址:http://www.mybatis.org/generator/index.html
代码:List<String> warnings = new ArrayList<String>(); boolean overwrite = true; File configFile = new File ("generatorConfig.xml"); ConfigurationParser cp = new ConfigurationParser(warnings); Configuration config = cp.parseConfiguration(configFile); DefaultShellCallback callback = new DefaultShellCallback(overwrite); MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings); myBatisGenerator.generate(null); |
6.Spring网址,附注常用到的代码
网址:https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html
下面是一个web的例子。注册和初始化DispatcherServlet的xml配置
(Below is an example of web.xml configuration to register and initialize the DispatcherServlet:) 代码:<web-app> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/app-context.xml</param-value> </context-param> <servlet> <servlet-name>app</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value></param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>app</servlet-name> <url-pattern>/app/*</url-pattern> </servlet-mapping> </web-app> |
7.使用@Controller注解为什么要配置<mvc:annotation-driven />
<mvc:annotation-driven/>它会自动注册RequestMappingHandlerMapping 与RequestMappingHandlerAdapter(3.1 以后DefaultAnnotationHandlerMapping 和AnnotationMethodHandlerAdapter已经可以不用了),配置一些messageconverter。即解决了@Controller注解的使用前提配置。 |
如下配置文件: 只配置<context:component-scan />,并没有使用<mvc:annotation-driven />配置,servlet拦截 *.do,.do请求可以被正确捕捉和处理。
mvc-servlet.xml <context:component-scan base-package="com.benwu.controller"> </context:component-scan> web.xml <servlet> <servlet-name>mvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>mvc</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> |
后来为了解决静态资源访问的问题,servlet改成了拦截所有请求,即 /,并添加了默认的servlet,这时候*.do请求不能被控制器捕捉了,页面错误为404。直到添加了<mvc:annotation-driven/>之后,.do请求才又能被正确捕捉和处理,配置如下
mvc-servlet.xml
<context:component-scan base-package="com.benwu.controller"> </context:component-scan> <mvc:annotation-driven/> <mvc:resources mapping="/styles/**" location="/WEB-INF/resource/styles/" /> <mvc:default-servlet-handler/> |
web.xml
<servlet> <servlet-name>mvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>mvc</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> |
是什么原因造成这种区别的呢?为什么一开始没用<mvc:annotation-driven/>的时候可以,添加了默认servlet之后就不行了呢?
最后的配置如果没有<mvc:annotation-driven/>,那么所有的Controller可能就没有解析,所以当有请求时候都没有匹配的处理请求类,就都去<mvc:default-servlet-handler />即default servlet处理了。
添加上<mvc:annotation-driven/>后,相应的do请求被Controller处理,而静态资源因为没有相应的Controller就会被default servlet处理。总之没有相应的Controller就会被default servlet处理就ok了。
要使用springmvc中的@Controller注解,就必须要配置<mvc:annotation-driven/>,否则org.springframework.web.servlet.DispatcherServlet无法找到控制器并把请求分发到控制器。