jar Package:All packages of spring, SPRINGMVC is all packages, mybatis all packages, database driver package, JSTL package (JSP page required);
Basic Profile:Springmvc.xml (Core configuration of Springmvc), Applicationcontext.xml (core configuration file for spring), Sqlmapconfig.xml ( MyBatis Core configuration file), log4j.properties (log file), Dp.properties
Springmvc.xml (3): annotation scan, annotation driver, view resolver;
Applicationcontext.xml (8): annotation scan, import db.properties, things, AOP facets, sqlsessionfactory objects (let Spring manage sqlsessionfactory), (Integration of pre-mybatis configuration files) things manager, data connection pool ,Mapper package scan
Note: Mapper package scan, must mapper.xml map file name and DAO interface name consistent, in the same directory
Sqlmapconfig.xml:
Nothing to configure, just configure <configuration></configuration> tag, but cannot be configured, because this is the core file of MyBatis
Db.properties: (database) driver, url, user, password
Core profile:Web. XML (Configure Spring Listener, configure SPRINGMVC Front Controller, configure post request garbled resolution)
SSM Consolidation Basic configuration file (Springmvc,spring,mybatis)