接上次的博文,看看第二种和第三种方案,因为第二种方案较量简朴,和第三种方案放在一起看了。
媒介
思量到在Select时利用AS和方案一其实没什么不同,在先容ResultMap之前,顺便带过一下。
方案二-Select …. AS
当我们的数据库列名和工具字段之间不是驼峰式定名的干系,我们可以在Select时利用AS,使得列名和工具名匹配上。
映射文件中是本次会执行的sql,我们会查出id,city_id,city_name,city_en_name。 凭据开启的驼峰式定名开关,我们会对应到工具的id,cityId,cityName,cityEnName字段。
<select id="selectCity" resultType="po.CityPO"> select id,city_id,city_name,city_en_name from SU_City where id = #{id} </select>
不外在这次,我们对PO做了小小的窜改,把cityEnName改成了cityEnglishName。
public class CityPO { Integer id; Long cityId; String cityName; String cityEnglishName; // 由cityEnName改成了cityEnglishName
由于找不到匹配的列,cityEnlishName必定没法被反射赋值,要为Null了。
CityPO{id=2, cityId=2, cityName='北京', cityEnglishName='null'}
办理步伐: 在Select字段的时候利用AS,下面是窜改后的映射文件。
<select id="selectCity" resultType="po.CityPO"> select id, city_id, city_name, city_en_name AS cityEnglishName from SU_City where id = #{id} </select>
窜改后执行获得的功效如下。
CityPO{id=2, cityId=2, cityName='北京', cityEnglishName='beijing'}
那么我们来看看它是如何生效的,主要的代码在那边。在昨天我们第一个先容的函数handleRowValues中传入了参数rsw,它是对ResultSet的一个包装,在这个包装里,完成了详细利用哪个名字作为数据库的列名。
final ResultSetWrapper rsw = new ResultSetWrapper(rs, configuration); handleRowValues(rsw, resultMap, resultHandler, new RowBounds(), null);
在这个结构函数傍边,我们会获取数据库的列名,AS为什么可以生效,详细就在下面这段代码。
super(); this.typeHandlerRegistry = configuration.getTypeHandlerRegistry(); this.resultSet = rs; final ResultSetMetaData metaData = rs.getMetaData(); final int columnCount = metaData.getColumnCount(); for (int i = 1; i <= columnCount; i++) { // 在这里 columnNames.add(configuration.isUseColumnLabel() ? metaData.getColumnLabel(i) : metaData.getColumnName(i)); jdbcTypes.add(JdbcType.forCode(metaData.getColumnType(i))); classNames.add(metaData.getColumnClassName(i)); }
在添加列名时,会从设置中获取是否利用类标签,isUseColumnLabel,默认为true。按照Javadoc,这个ColumnLabel就是AS后的谁人名字,假如没有AS的话,就是获取的原生的字段名。
/** * Gets the designated column's suggested title for use in printouts and * displays. The suggested title is usually specified by the SQL <code>AS</code> * clause. If a SQL <code>AS</code> is not specified, the value returned from * <code>getColumnLabel</code> will be the same as the value returned by the * <code>getColumnName</code> method. * * @param column the first column is 1, the second is 2, ... * @return the suggested column title * @exception SQLException if a database access error occurs */ String getColumnLabel(int column) throws SQLException;
后头的进程就和昨天讲的方案一一模一样了,不再赘述。
方案三-ResultMap
resultMap 元素是 MyBatis 中最重要最强大的元素。它就是让你远离 90%的需要从功效 会合取出数据的 JDBC 代码的谁人对象, 并且在一些景象下答允你做一些 JDBC 不支持的事 情。 事实上, 编写相似于对巨大语句连系映射这些等同的代码, 也许可以跨过上千行的代码。 ResultMap 的设计就是简朴语句不需要明晰的功效映射,而许多巨大语句确实需要描写它们 的干系。
ResultMap是Mybatis中可以完成巨大语句映射的对象,但在我们的日常开拓中,我们往往是一个XML对应JavaBeans 或 POJOs(Plain Old Java Objects,普通 Java 工具),并没有出格巨大的应用,下面也是基于日常的利用,看看简朴的ResultMap在源码层面是如何揭示的。
<resultMap id="cityMap" type="po.CityPO"> <result column="id" property="id"/> <result column="city_id" property="cityId"/> <result column="city_name" property="cityName"/> <result column="city_en_name" property="cityEnglishName"/> </resultMap> <select id="selectCity" resultMap="cityMap"> select id, city_id, city_name, city_en_name from SU_City where id = #{id} </select>
在resultMap的子元素result对应了result和工具字段之间的映射,并通过id标示,你在Select语句中指定需要利用的resultMap即可。