标签:mybatis
配置文件
使用MyBatis
使用xml
使用注解
新建接口类,在接口中定义CRUD方法声明,
然后使用注解:
@Insert("insert into users(name, age) values (#{name}, #{age})")
@Delete("delete from users where id = #{id}")
@Update("update users set name = #{name}, age = #{age} where id = #{id}")
@Select("select * from users where id = #{id}")
在配置文件中注册该接口:
<mapper class="mybatis_0100.user.UserMap"/>
使用properties文件存放数据库配置
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/mybatis
username=root
password=
启用别名
在配置文件中添加标签typeAliases,有两种:package(给整个包起别名)和typeAlias(给特定的类起别名)
<package name="mybatis_0100.user"/>
<!-- <typeAlias type="mybatis_0100.user.User" alias="_user"/> -->
使用log输出
添加log4j-1.2.13.jar,然后build path
在src下添加log4j.xml文件
3
3
标签:mybatis
原文地址:http://liusw94.blog.51cto.com/7377689/1659291