出自《MyBatis从入门到精通》刘增辉,精简
1.设置源码编码方式为 UTF -8 2.设置编译源代码的 JDK 版本 3.添加mybatis依赖 4.还需要添加会用到的 Log4j JUnit ySql 驱动的依赖。
- <?xml version="1.0" encoding="UTF-8"?>
- <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>org.example</groupId>
- <artifactId>One_MyBatisPrimary</artifactId>
- <version>1.0-SNAPSHOT</version>
-
- <!-- 1.设置源码编码方式为 UTF -8 ,配置如下-->
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <!--2.设置编译源代码的 JDK 版本-->
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- 3.添加mybatis依赖-->
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis</artifactId>
- <version>3.3.0</version>
- </dependency>
- <!-- 4.还需要添加会用到的 Log4j JUnit ySql 驱动的依赖。-->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis</artifactId>
- <version>3.3.0</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>5.1.38</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.12</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.7.12</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
- </dependency>
- <!-- !一其他依赖一-->
- </dependencies>
-
- </project>
插入数据
INSERT INTO country(countryname,countrycode) VALUES ('中国','CN'),('美国','us'),('俄罗斯','RU'),('英国','GB'),('法国', 'FR');
- package tk.mybatis.simple.model;
- public class Country {
- private Long id;
- private String countryname;
- private String countrycode;
-
- public Long getId() {
- return id;
- }
-
- public void setId(Long id) {
- this.id = id;
- }
-
- public String getCountryname() {
- return countryname;
- }
-
- public void setCountryname(String countryname) {
- this.countryname = countryname;
- }
-
- public String getCountrycode() {
- return countrycode;
- }
-
- public void setCountrycode(String countrycode) {
- this.countrycode = countrycode;
- }
- }
- "1.0" encoding="UTF-8" ?>
- configuration
- PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
- "https://mybatis.org/dtd/mybatis-3-config.dtd">
- <configuration>
- <settings>
- <setting name="logImpl" value="LOG4J"/>
- settings>
- <typeAliases>
- <package name="tk.mybatis.simple.model"/>
- typeAliases>
-
- <environments default="development">
- <environment id="development">
- <transactionManager type="JDBC"/>
- <dataSource type="UNPOOLED">
- <property name="driver" value="com.mysql.jdbc.Driver"/>
- <property name="url" value="jdbc:mysql://localhost:3306/mybatis_study"/>
- <property name="username" value="root"/>
- <property name="password" value="password"/>
- dataSource>
- environment>
- environments>
- <mappers>
- <mapper resource="mapper/CountryMapper.xml"/>
- mappers>
- configuration>
我的存放路径:
- #全局面配置
- log4j.rootLogger=ERROR, stdout
- #MyBatis 日志配置
- log4j.logger.tk.mybatis.simple.mapper=TRACE
- #控制台输出配置
- log4j.appender.stdout=org.apache.log4j.ConsoleAppender
- log4j.appender.stdout.layout = org.apache.log4j.PatternLayout
- log4j.appender.stdout.layout.ConversonPattern = %5p [%t] - %m%n
-
-
- #用过 Log4j 日志组件的人可能都会知道,配直中的 log4j.logger.tk.mybatis.simple.mapper 对应的是 tk mybatis simple .mapper包,
- # 但是在这个例子中,Java目录下并没有这个包名,只在资源目录下有 mapper目录
-
- #MyBatis 的日志实现中,所谓的包名实际上是 XML 配直中的 namespace 属性值的一部分
-
- #由于namespace性值必须和接口全限定类名相同 ,
- # 因此才会真正对应到Java 中的包 当使用纯注解方式时,使用的就是纯粹的包名
-
- #MyBatis 日志的 最低级 TRACE ,
- # 在这个日志级别下,MyBatis会输出执行 SQL 过程中的详细信息,这个级别特别适合在开发时使用
- "1.0" encoding="UTF-8" ?>
- mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="mapper.CountryMapper">
- <select id="selectAll" resultType="Country">
- select * from country
- select>
- mapper>
- package tk.mybatis.simple.mapper;
-
- import org.apache.ibatis.io.Resources;
- import org.apache.ibatis.session.SqlSession;
- import org.apache.ibatis.session.SqlSessionFactory;
- import org.apache.ibatis.session.SqlSessionFactoryBuilder;
- import org.junit.BeforeClass;
- import org.junit.Test;
- import tk.mybatis.simple.model.Country;
-
- import java.io.IOException;
- import java.io.Reader;
- import java.util.List;
-
- public class CountryMapperTest {
- private static SqlSessionFactory sqlSessionFactory;
-
- @BeforeClass
- public static void init() {
- try {
- // 通过 Resources 工具类将 ti -config.xm 配置文件读入 Reader
- Reader reader = Resources.getResourceAsReader("mybatis-config.xml");
- // 再通过 SqlSessionFactoryBuilder 建造类使用 Reader 创建 SqlSessionFactory工厂对象。
- // 在创建 SqlSessionFactory 对象的过程中
- // 首先解 mybatis-config.xml 配置文件,读取配置文件中的 mappers 配置后会读取全部的 Mapper xml 进行具体方法的解析,
- // 在这些解析完成后, SqlSessionFactory 就包含了所有的属性配置和执行 SQL 的信息。
- sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader);
- // 使用时通过 SqlSessionFactory 工厂对象获取 splSession
- reader.close();
- } catch (IOException ignore) {
- ignore.printStackTrace();
- }
- }
-
- @Test
- public void testSelectAll() {
- // 通过 SqlSession selectList 方法查 Coun Mapper nl id selectAll的方法,执行 查询
- SqlSession sqlSession = sqlSessionFactory.openSession();
- // mybaatis底层使用 JDBC 执行 SQL ,获得查询结果集 ResultSet 后,根据 resultType的配置将结果映射为 Country 类型的集合 返回查询结果。
- try {
- List
countryList = sqlSession.selectList("selectAll"); - // 这样就得到了最后的查询结果 countryList ,简单将结果输出到控制台。
- printCountryList(countryList);
- } finally {
- //最后 定不要忘记关闭 SqlSession ,否 会因为连接没有关闭导致数据库连接数过多,造成系统崩旗。
- sqlSession.close();
- }
- }
-
- private void printCountryList(List
countryList) { - for (Country country : countryList) {
- System.out.printf("%-4d%4s%4s\n", country.getId(), country.getCountryname(), country.getCountrycode());
- }
- }
- }
解决:
(1)这个我勾选了但还是有没有成功IDEA提示java: 程序包org.apache.ibatis.session不存在_小白学CS的博客-CSDN博客_程序包org.apache.ibatis.session不存在
解决:复制的路径是\,改成/