<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:beans.xml
</param-value>
</context-param>
上面就是web.xml中对spring容器的初始化配置,<context-param>中<param-value>中的classpath:beans.xml 即是spring配置文件beans.xml的位置(classpath下,在myeclipse的工程中是src目录下)
SSM现在是比较常用的框架有ssm,既是SpringMVC、Spring及MyBatis1、确定需要集成版本,以mybatis-3.2.1、spring-framework-3.2.0.RELEASE为例
2、Spring3.2先和MyBatis3.2集成
3、创建web动态工程:注意classpath路径
4、添加Spring3.2+MyBatis3.2 mysql驱动共计30个jar文件
18个spring相关的jar文件
MyBatis3.2 版本共9个jar文件
包含mysql驱动共28个jar文件
jstl 2个jar 文件共计30个jar文件
jdbc.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql:///ssm
jdbc.username=root
jdbc.password=admin
log4j.properties
5、写配置文件的流程:
数据库连接配置文件->DataSource->SqlSessionFactory->Mapper->Service->Controller
spring配置文件
UserMapper
也可以在接口里面定义主键的MyBatis映射
UserMapper.xml
UserServiceImpl
Spring3.2+SpringMVC3.2
spring配置文件
web.xml
UserController
webapp/WEB-INF/views/user.jsp
至此,集成完成,在此基础上可再添加其他功能。每步都要截图太麻烦了我就不上图了。
JavaConfig就是使用注释来描述Bean配置的组件。JavaConfig 是Spring的一个子项目。传统spring一般都是基于xml配置的,不过后来新增了许多JavaConfig的注解。特别是springboot,基本都是清一色的java config
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)