摘要:
0、搭建SpringMVC框架 参考文章:IDEA搭建SpringMVC项目 1、添加依赖 在上一篇文章的基础上添加如下依赖 <!-- mybatis核心包 --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</ar 阅读全文
摘要:
1、新建Maven项目 目录结构如下: 2、添加依赖 <dependencies> <!-- spring-webmvc依赖于spring-core、spring-beans、spring-context等jar包,故不需要显式引入 --> <dependency> <groupId>org.spr 阅读全文
摘要:
在tomcat启动的时候会扫描web.xml文件,web.xml文件中通常配置三个,分别是: 监听器Listen需要配置ContextLoaderListener创建的时候会加载Spring配置文件,然后生成一个Spring容器,先生成的容器为父容器。随后加载service,mapper通过Mapp 阅读全文