springmvc+spring+mybatis整合

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

springmvc+spring+mybatis整合

首先在整合这个框架的时候,想想其一般的步骤是怎样的,先有个步骤之后,不至于在后面的搞混了,这样在整合的时候也比较清晰些。

然后我们就细细的一步一步来整合。

1 创建一个Web项目。

2 导入Mybatis3、Spring4、SpringMVC4、连接数据库(我使用的数据库是mysql)的jar包。

我所用的包:

spring-websocket-4.2.0.RELEASE.jar

3 创建Mybatis3、Spring4、SpringMVC4、连接数据库的配置文件。

4 配置web.xml

1

2

3xmlns="/xml/ns/javaee"

4xmlns:xsi="/2001/XMLSchema-instance" 5xsi:schemaLocation="/xml/ns/javaee

6/xml/ns/javaee/web-app_2_5.xsd">

7

8 9

10contextConfigLocation 11

12/WEB-INF/classes/applicationContext.xml,

13

14

15

16

17

18

19

20log4jConfigLocation 21/WEB-INF/log4j.xml

22

23

24

25log4jRefreshInterval 2660000

27

28

29

30

31webAppRootKey

32ssm.root

33

34

35

36

37default

38/static/*

39

40

41

42

43

44mvc

45org.springframework.web.servlet.DispatcherServlet

46

48

49contextConfigLocation

50/WEB-INF/classes/mvc-servlet.xml

51

52

53

54mvc

55/

56

57

58

59

60

61encodingFilter

62org.springframework.web.filter.CharacterEncodingFilter

63

64encoding

65UTF-8

相关文档
最新文档