博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Atitit.mybatis的测试 以及spring与mybatis在本项目中的集成配置说明
阅读量:6473 次
发布时间:2019-06-23

本文共 1550 字,大约阅读时间需要 5 分钟。

Atitit.mybatis的测试  以及springmybatis在本项目中的集成配置说明

 

 

1.1. Mybatis invoke

 

/AtiPlat_train/src/com/attilax/db/mybatisTO91.java

 

 @SuppressWarnings("all")

public static void main(String[] args) throws IOException {

       // TODO Auto-generated method stub

     

           String resource = "com/attilax/db/ibatiascfg.xml";

           Reader reader;

 

 

           reader = Resources.getResourceAsReader(resource);

 

 

           SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder()

                   .build(reader);

           SqlSession sqlSession = sqlSessionFactory.openSession();

       List li=   sqlSession.selectList("getLockTables", 9999999);

//            StudentDao studentDao =sqlSession.getMapper(StudentDao.class);

//            Student st = studentDao.getstudent(1);

            System.out.println( li.size());

           

           List li2=    sqlSession.selectList("findRecords"," select 1 as tit ");

           System.out.println(core.toJsonStrO88(li2));

           

       }

 

 

1.2. Spring的数据源配置

D:\0workspace\AtiPlatf_train\src\applicationContext.xml

 

<context:property-placeholder location="classpath:jdbc.properties"/>

   <!-- ati add q213 -->

   <bean id="dataSource"   

  class="org.springframework.jdbc.datasource.DriverManagerDataSource">   

    <property name="driverClassName" value="${ct.jdbc.driverClassName}" />

    <property name="url" value="${ct.jdbc.url}" />

 

 

作者::  ★(attilax)>>>   绰号:老哇的爪子  全名::Attilax Akbar Al Rapanui 阿提拉克斯 阿克巴 阿尔 拉帕努伊  汉字名:艾龙,  EMAIL:1466519819@qq.com

转载请注明来源: http://blog.csdn.net/attilax

 

1.3. Mybatis配置文件的位置

 <!-- 数据访问入口 -->

    <bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean" p:configLocation="classpath:/config/ibatis/sql-map-config.xml" p:dataSource-ref="dataSource"/>

    

你可能感兴趣的文章
我的友情链接
查看>>
Java Web 高性能开发
查看>>
初识Scala反射
查看>>
第三十九天
查看>>
Redis详解
查看>>
论程序员加班的害处
查看>>
codeblocks快捷键
查看>>
基于HTML5的WebGL设计汉诺塔3D游戏
查看>>
WPF资料链接
查看>>
再次更新
查看>>
mysql的数据类型int、bigint、smallint 和 tinyint取值范围
查看>>
Python算法(含源代码下载)
查看>>
利用Windows自带的Certutil查看文件MD5
查看>>
查询指定名称的文件
查看>>
AJAX POST&跨域 解决方案 - CORS
查看>>
开篇,博客的申请理由
查看>>
Servlet 技术全总结 (已完成,不定期增加内容)
查看>>
[JSOI2008]星球大战starwar BZOJ1015
查看>>
centos 7 部署LDAP服务
查看>>
iOS项目分层
查看>>