我的代码Spring SpringMvc 30 + MyBatis 整合.docx
- 文档编号:24448186
- 上传时间:2023-05-27
- 格式:DOCX
- 页数:20
- 大小:73.77KB
我的代码Spring SpringMvc 30 + MyBatis 整合.docx
《我的代码Spring SpringMvc 30 + MyBatis 整合.docx》由会员分享,可在线阅读,更多相关《我的代码Spring SpringMvc 30 + MyBatis 整合.docx(20页珍藏版)》请在冰豆网上搜索。
我的代码SpringSpringMvc30+MyBatis整合
我的代码:
SpringSpringMvc3.0+MyBatis整合
一、使用的jar包就不详细讲解了,下载了Mybatis和Spring的jar包基本上都添加上去了、
一图概括:
(这是我使用的ar包,有些不是Mybatis和Spring的)
二、web.xml配置文件
1.
xml version="1.0" encoding="UTF-8"?
>
2. xsi="http: //www.w3.org/2001/XMLSchema-instance" 3. xmlns=" xmlns: web=" 4. xsi: schemaLocation=" 5. id="WebApp_ID" version="2.5"> 6. 7. 8. 9. 10. -- 加载spring容器配置 --> 11. 12. 13. 14. -- 设置Spring容器加载配置文件路径 (主要配置都在这里面) --> 15. 16. 17. 18. 19. 20. 21. -- 配置Spring核心控制器 --> 22. 23. 24. 25. -- 不指定 26. -- 27. 28. 29. 30. 31. --> 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. -- 解决工程编码过滤器 --> 45. 46. 47. 48. 49. 50. 51. 52. 53. 54. 55. 56. 57. 58. -- dwr 添加配置 --> 59. 60. 61. 62. 63. 64. 65. 66. 67. 68. 69. 70. 71. 72. 73. 74. 75. 76. 77. 78. 79. 80. 81. 82. 83. 84. 85. 86. 87.
三、
--配置Spring核心控制器-->
--不指定
--
-->
这个我使用的是默认的web-servlet.xml文件.如下:
1.
xml version="1.0" encoding="UTF-8"?
>
2.
3. //www.springframework.org/schema/beans" 4. xmlns: tx="http: //www.springframework.org/schema/tx" 5. xmlns: xsi="http: //www.w3.org/2001/XMLSchema-instance" 6. xmlns: context="http: //www.springframework.org/schema/context" 7. xmlns: aop="http: //www.springframework.org/schema/aop" 8. xmlns: p="http: //www.springframework.org/schema/p" 9. xsi: schemaLocation="http: //www.springframework.org/schema/beans 10. http: //www.springframework.org/schema/beans/spring-beans.xsd 11. http: //www.springframework.org/schema/tx 12. http: //www.springframework.org/schema/tx/spring-tx.xsd 13. http: //www.springframework.org/schema/context 14. http: //www.springframework.org/schema/context/spring-context.xsd 15. http: //www.springframework.org/schema/aop 16. http: //www.springframework.org/schema/aop/spring-aop.xsd"> 17. 18. -- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 --> 19. 20. 21. -- 对模型视图名称的解析,即在模型视图名称添加前后缀 --> 22. 23. 24. 25. 26. 27. component-scan base-package="com.weshare.**.web"/> 28. -- /hrtiaoxin/src/java/com/guohualife/ hr/pfc/ web/controller/HrDeptMarkController.java --> 29.
四:
applicationContext.xml文件:
1.
xml version="1.0" encoding="UTF-8"?
>
2. //www.springframework.org/schema/beans" 3. xmlns: tx="http: //www.springframework.org/schema/tx" 4. xmlns: xsi="http: //www.w3.org/2001/XMLSchema-instance" 5. xmlns: context="http: //www.springframework.org/schema/context" 6. xmlns: aop="http: //www.springframework.org/schema/aop" 7. xmlns: p="http: //www.springframework.org/schema/p" 8. xsi: schemaLocation="http: //www.springframework.org/schema/beans 9. http: //www.springframework.org/schema/beans/spring-beans.xsd 10. http: //www.springframework.org/schema/tx 11. http: //www.springframework.org/schema/tx/spring-tx.xsd 12. http: //www.springframework.org/schema/context 13. http: //www.springframework.org/schema/context/spring-context.xsd 14. http: //www.springframework.org/schema/aop 15. http: //www.springframework.org/schema/aop/spring-aop.xsd"> 16. 17. 18. -- properties配置文件 --> 19. 20. class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 21. -- 是否忽略不可解析的 --> 22. 23. -- 多个locations, 单个location 24. 25. 26. 27. 28. -- 29. 30. 31. 32. --> 33. 34. 35. 36. 37. -- 文件上传 --> 38. defaultEncoding="UTF-8" > 39. 40. -- 加载 其他xml文件 --> 41. 42. 43. 44. 45. 46.
包含的其他4个xml文件:
4.1:
aC-common.xml
1.
xml version="1.0" encoding="UTF-8"?
>
2. //www.springframework.org/schema/beans" 3. xmlns: tx="http: //www.springframework.org/schema/tx" 4. xmlns: xsi="http: //www.w3.org/2001/XMLSchema-instance" 5. xmlns: context="http: //www.springframework.org/schema/context" 6. xmlns: aop="http: //www.springframework.org/schema/aop" 7. xmlns: p="http: //www.springframework.org/schema/p" 8. xsi: schemaLocation="http: //www.springframework.org/schema/beans 9. http: //www.springframework.org/schema/beans/spring-beans.xsd 10. http: //www.springframework.org/schema/tx 11. http: //www.springframework.org/schema/tx/spring-tx.xsd 12. http: //www.springframework.org/schema/context 13. http: //www.springframework.org/schema/context/spring-context.xsd 14. http: //www.springframework.org/schema/aop 15. http: //www.springframework.org/schema/aop/spring-aop.xsd"> 16. 17. component-scan base-package="com.weshare.*.api.dao"> component-scan> 18. component-scan base-package="com.weshare.*.api.service"> component-scan> 19. component-scan base-package="mon.utils"> component-scan> 20. 21. 22. 23. 24. 25.
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 我的代码Spring SpringMvc 30 MyBatis 整合 代码 Spring