摘要:
foreach <select id="selectPostIn" resultType="domain.blog.Post"> SELECT * FROM POST P WHERE ID in <foreach item="item" index="index" collection="list" 阅读全文
摘要:
如果这样来写一个 mapper 1 <update id="createTable3" parameterType="map"> 2 drop table if exists ${tableName}; 3 CREATE TABLE ${tableName} ( 4 field_1 VARCHAR( 阅读全文
摘要:
今天写了一个简单的测试例子,用mybatis实现新建一个MySQL数据表 整体是JavaWeb项目,下面的代码是不完整的。 这是mapper 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE mapper 3 PUBLIC "-//mybat 阅读全文
摘要:
第一章:引言 用例是代表系统中各个项目相关人员之间就系统的行为所达成的契约。用例描述了在不同的条件下,系统对某一项目相关人员的请求所作出的响应。根据执行者作出的请求和请求涉及的条件,系统将执行不同的行为序列,每一行为序列称之为一个场景,一个用例是多个不同场景的集合。用例能够在项目组中激发对项目系统的 阅读全文
摘要:
mapper 1 <!--传递map的key --> 2 <insert id="addUser2" parameterType="map"> 3 insert into mybatis.user (id , name ,password ) values(#{userid},#{username} 阅读全文
摘要:
1 <dependencies> 2 <!--导入Mybatis依赖包--> 3 <dependency> 4 <groupId>org.mybatis</groupId> 5 <artifactId>mybatis</artifactId> 6 <version>3.5.2</version> 7 阅读全文
摘要:
结果集映射: resultMap解决数据库字段名和属性名不一致的问题 id name pwd id name password column 是数据库的字段名 property 是实体类的属性名 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE ma 阅读全文