三大框架的配置文件
- Spring:配置文件beans.xml(bean对象,依赖注入)
- SpringMvc:web.xml中配置(拦截请求,分发,定义解析视图),再加上spring-mvc.xml解析视图配置。
- mybatis:主配置文件mybatis-config.xml(数据源,类型别名,引入映射文件)
ssm框架整合:
- 引包+服务器Jetty(maven)
- Jetty(webdefault.xml配置)
- springmvc中拦截请求还是放在web.xml中。
- ssm配置文件全部放在applicationContext.xml中(resource目录下),包含:springmvc的视图解析,mybatis数据源配置,配置sqlSessionFactory,注入指定包中的mapper接口实体类(名字为对应接口的名称且首字母小写)
- 目录结构