zoukankan      html  css  js  c++  java
  • Mybatis注解学习xxxMapper is not known to the MapperRegistry

    今天晚上在学习Mybatis注解的时候,总是遇到错误Type interface com.souvi.ibatis.xxxMapper is  not known to the MapperRegistry,在网上搜索相关的解决方案时,得到的答案都不怎么详细,但知道了Mybatis注解一定要注册自己写的接口类,不然就会老报开头提到的这个错误。

    下面举个例子:先看看项目的简单部署吧,如图:

    先看核心文件,UserTest.java

    package com.rollen;
    
    import java.io.*;
    
    import org.apache.ibatis.io.Resources;
    import org.apache.ibatis.session.SqlSession;
    import org.apache.ibatis.session.SqlSessionFactory;
    import org.apache.ibatis.session.SqlSessionFactoryBuilder;
    
    public class UserTest {
    	public static void main(String[] args) {
    
    		String resource = "com/rollen/configure.xml";
    
    		Reader reader = null;
    		try {
    			reader = Resources.getResourceAsReader(resource);
    		} catch (IOException e) {
    			e.printStackTrace();
    		}
    
    		SqlSessionFactory factory = new SqlSessionFactoryBuilder()
    				.build(reader);
    		factory.getConfiguration().addMapper(UserInfoMapper.class);
    		SqlSession sqlSession = factory.openSession();
    		try {
    			UserInfoMapper userInfoMapper = sqlSession
    					.getMapper(UserInfoMapper.class);
    			User user = userInfoMapper.getUser(10);
    			System.out.println(user);
    		} finally {
    			sqlSession.close();
    		}
    	}
    }
    

      主要要注意的是比如要注册,也就是这行代码:

    factory.getConfiguration().addMapper(UserInfoMapper.class);
    

      UserInfoMapper.java代码如下:

    package com.rollen;
    
    import org.apache.ibatis.annotations.Select;
    
    public interface UserInfoMapper {
    	@Select("select * from user_tb where age= #{age}")
    	public User getUser(int age);
    }
    

      user.java 代码如下:

    package com.rollen;
    
    public class User {
    	private String name;
    	private int age;
    	/**
    	 * @return the name
    	 */
    	public String getName() {
    		return name;
    	}
    	/**
    	 * @param name the name to set
    	 */
    	public void setName(String name) {
    		this.name = name;
    	}
    	/**
    	 * @return the age
    	 */
    	public int getAge() {
    		return age;
    	}
    	/**
    	 * @param age the age to set
    	 */
    	public void setAge(int age) {
    		this.age = age;
    	}
    	/* (non-Javadoc)
    	 * @see java.lang.Object#toString()
    	 */
    	@Override
    	public String toString() {
    		// TODO Auto-generated method stub
    		return "name: "+name+"age: "+age;
    	}
    	
    	
    }
    

      最后的configure.xml文件代码为:

    <?xml version="1.0" encoding="UTF-8" ?>  
    <!DOCTYPE configuration PUBLIC   
        "-//mybatis.org//DTD Config 3.0//EN"  
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
    <configuration>
    	<typeAliases>
    		<typeAlias alias="User" type="com.rollen.User" />
    	</typeAliases>
    	<environments default="development">
    		<environment id="development">
    			<transactionManager type="JDBC" />
    			<dataSource type="POOLED">
    				<property name="driver" value="com.mysql.jdbc.Driver" />
    				<property name="url" value="jdbc:mysql://localhost:3306/user_db" />
    				<property name="username" value="root" />
    				<property name="password" value="root" />
    			</dataSource>
    		</environment>
    	</environments>
    </configuration>  
    

      参考文章:http://www.laokboke.net/2012/09/25/mybatis-annotation/

     


    ==============================================================================

    本博客已经废弃,不在维护。新博客地址:http://wenchao.ren


    我喜欢程序员,他们单纯、固执、容易体会到成就感;面对压力,能够挑灯夜战不眠不休;面对困难,能够迎难而上挑战自我。他
    们也会感到困惑与傍徨,但每个程序员的心中都有一个比尔盖茨或是乔布斯的梦想“用智慧开创属于自己的事业”。我想说的是,其
    实我是一个程序员

    ==============================================================================
  • 相关阅读:
    vue中dom元素和组件的获取
    Vue.js中父子组件之间的传值和传方法
    IDEA中的快捷键
    springmvc中使用controller时,跳转视图会带上外层的地址
    通配符的匹配很全面, 但无法找到元素 'mvc:annotation-driven' 的声明
    vue中的组件
    vuejs
    成员变量(实例变量)&局部变量&静态变量(类变量)的区别
    代码块
    重载&重写
  • 原文地址:https://www.cnblogs.com/rollenholt/p/2758008.html
Copyright © 2011-2022 走看看