SSM框架整合过程以及加载原理的思考
#Spring #SpringMVC #Mybatis #源码
# 添加 Sring+SpringMVC 相关依赖
因为使用的 maven,web 容器使用的 tomcat,所以先在 pom.xml 中加上:
<packaging>war</packaging>这样项目就会自动将依赖放进 WEB-INF 下面的 lib 中,否则会出现一系列 NoClassFound 等错误。
添加 spring-webmvc 依赖:
<dependency>...
more...