博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring+springmvc+mybatis+maven整合
阅读量:6274 次
发布时间:2019-06-22

本文共 2981 字,大约阅读时间需要 9 分钟。

这个博客还是以传智播客的杰信项目为材料,特别在此说明。

第一步:先导入jar包:用maven的方式来导入jar包。在

第二步:项目结构如下:

config包下面的结构如下:

第三步:先整合spring和mybatis.

先编写beans.xml:

再编写classpath:/mybatis/sqlMapConfig.xml下面的sqlMapConfig.xml文件:

再编写mybatis/FactoryMapper.xml下面的FactoryMapper.xml文件:

insert into factiry_c(FACTORY_ID,FULL_NAME,CONTACTS,PHONE,MOBILE,FAX,CNOTE,INSPECTOR) value(#{id,jdbcType=VARCHAR},#{fullName,jdbcType=VARCHAR},#{factoryName,jdbcType=VARCHAR},#{contacts,jdbcType=VARCHAR},#{phone,jdbcType=VARCHAR},#{mobile,jdbcType=VARCHAR},#{fax,jdbcType=VARCHAR},#{cnote,jdbcType=VARCHAR},#{inspector,jdbcType=VARCHAR},#{orderNo,jdbcType=INTEGER},#{createBy,jdbcType=VARCHAR},#{createDept,jdbcType=VARCHAR},#{createTime,jdbcType=TIMESTAMP})

 

 

3  整合springmvc;编写springmvc-servlet.xml文件;

上面的spring配好了。mybatis也配好了。springmvc也配好了,最后一步就是把三者整合整合起来,这个一个web项目,当然在web.xml中写。

web.xml文件如下:

Archetype Created Web Application
contextConfigLocation
classpath:spring/beans.xml
org.springframework.web.context.ContextLoaderListener
springmvc
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:springmvc/springmvc-servlet.xml
springmvc
*.action
SpringEncoding
org.springframework.web.filter.CharacterEncodingFilter
encoding
utf-8
SpringEncoding
/*

 

总结:spring和springmvc的配置在web.xml中配置,mybatis的配置在spring的beans.xml中配置。

转载地址:http://odgpa.baihongyu.com/

你可能感兴趣的文章
view和activity的区别(转)
查看>>
MySQL的create table as 与 like区别(转)
查看>>
SQLserver 存储过程执行错误记录到表
查看>>
Spring Boot 之 RESRful API 权限控制
查看>>
Redis——常用命令操作
查看>>
UDP 单播、广播和多播
查看>>
windows linux—unix 跨平台通信集成控制系统----系统硬件信息获取
查看>>
ThinkPad E550 安装 WIN7 的启动 U 盘制作
查看>>
在 Windows 下远程桌面连接 Linux - XManager 篇
查看>>
tomcat如何路由映射网址
查看>>
如何开始容器化
查看>>
为什么POLARDB是云计算2.0时代产品进化的关键里程碑?
查看>>
HTTP 协议解析
查看>>
十面埋伏? 程序世界里的不信任原则
查看>>
Use our script to build OGRE, CEGUI, FreeImage, Cg and OIS from CVS
查看>>
姚期智:算法将推动下一波AI浪潮,现有革新将达极限
查看>>
虚拟机设置bios第一启动为u盘
查看>>
Day4---D3:法律问题,合同和电子举证
查看>>
[译]搭建账户系统
查看>>
三种类型的DNS攻击以及应对方法
查看>>