码迷,mamicode.com
首页 > 其他好文 > 详细

IBatis的resultMap使用

时间:2017-04-15 21:08:26      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:ibatis的resultmap使用

1.创建Maven项目,项目名称ibatisdemo,目录结构如图所示

技术分享


2.pom.xml内容如下

<project xmlns="http://maven.apache.org/POM/4.0.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.mycompany</groupId>
  <artifactId>ibatisdemo</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <build/>
  
  <dependencies>
  	<!-- https://mvnrepository.com/artifact/org.apache.ibatis/ibatis-sqlmap -->
	<dependency>
	    <groupId>org.apache.ibatis</groupId>
	    <artifactId>ibatis-sqlmap</artifactId>
	    <version>2.3.0</version>
	</dependency>
	
	<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
	<dependency>
	    <groupId>mysql</groupId>
	    <artifactId>mysql-connector-java</artifactId>
	    <version>5.1.38</version>
	</dependency>
  </dependencies>
</project>


3.在src/main/java下创建实体类Student,包名(com.mycompany.entity),如图所示

技术分享


4.实体类Student的内容如下

package com.mycompany.entity;

public class Student {
	private int sid;
	private String name;
	public int getSid() {
		return sid;
	}
	public void setSid(int sid) {
		this.sid = sid;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String toString(){
		return "id="+sid + "name="+name;
	}
}


5.在src/main/java下创建实体类Student的Student.xml文件,如图所示

技术分享


6.在src/main/resources下创建SqlMap.properties属性文件,如图所示

技术分享


7.SqlMap.properties属性文件内容如下

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test
username=root
password=


8.在src/main/resources下创建SqlMapConfig.xml配置文件,如图所示

技术分享


9.SqlMapConfig.xml配置文件的内容如下

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">

<sqlMapConfig>
	<properties resource="SqlMap.properties"/>
	
	<transactionManager type="JDBC">
		<dataSource type="simple">
			<property name="JDBC.Driver" value="${driver}"/>
			<property name="JDBC.ConnectionURL" value="${url}"/>
			<property name="JDBC.Username" value="${username}"/>
			<property name="JDBC.Password" value="${password}"/>
		</dataSource>
	</transactionManager>
	
	<sqlMap resource="com/mycompany/entity/Student.xml"/>
</sqlMapConfig>


10.在src/main/java下创建接口StudentDao,如图所示

技术分享


11.接口StudentDao的内容如下

package com.mycompany.dao;


import com.mycompany.entity.Student;

public interface StudentDao {
	
	/**
	 * 通过resultMap获取学生信息
	 * @param sid
	 * @return
	 */
	public Student getStudentById(int sid);
}


12.在src/main/java下创建接口StudentDao的实现类StudentDaoImpl,如图所示

技术分享


13.接口StudentDao的实现类StudentDaoImpl的内容如下

package com.mycompany.dao.impl;

import java.io.IOException;
import java.io.Reader;
import java.sql.SQLException;

import com.ibatis.common.resources.Resources;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.ibatis.sqlmap.client.SqlMapClientBuilder;
import com.mycompany.dao.StudentDao;
import com.mycompany.entity.Student;

public class StudentDaoImpl implements StudentDao {
	private static SqlMapClient sqlMapClient = null;
	
	static{
		try {
			Reader reader = Resources.getResourceAsReader("SqlMapConfig.xml");
			sqlMapClient = SqlMapClientBuilder.buildSqlMapClient(reader);
			reader.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	/**
	 * 查询学生信息
	 */
	public Student getStudentById(int sid) {
		Student student = null;
		try {
			student = (Student) sqlMapClient.queryForObject("getStudentById",sid);
		} catch (SQLException e) {
			e.printStackTrace();
		}
		return student;
	}

}

14.在src/test/java下创建测试类StudentTest,如图所示

技术分享


15.测试类StudentTest的内容如下

package com.mycompany.dao.impl;

import com.mycompany.entity.Student;

public class StudentTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		StudentDaoImpl studentDaoImpl = new StudentDaoImpl();
		
		//查询学生信息
		Student student5 = studentDaoImpl.getStudentById(5);
		System.out.println(student5);
	}

}

技术分享

本文出自 “素颜” 博客,谢绝转载!

IBatis的resultMap使用

标签:ibatis的resultmap使用

原文地址:http://suyanzhu.blog.51cto.com/8050189/1916264

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!