Mybatis整合Spring
2021-03-08 23:29
标签:drive 数据 instance string oss 最大连接数 work actor apc
除了Spring、Mybatis相关的jar包以外,还需要引入整合的jar包、 项目目录结构如下图所示: 首先是Spring-framework.xml的配置文件,此配置文件主要作用是引入其他配置文件,代码如下图所示: 然后是spring-mvc的配置,主要作用是设置要自动扫描的包和Mybatis代理模式的依赖注入,代码如下图所示: 然后是spring-jdbc.xml的配置, 这里是用了C3P0连接池,代码如下图所示: 数据连接的配置文件 db.properties 如下图所示: 完成以上配置后,在test包中编写测试代码进行测试: TestMapper.java的代码如下图所示,测试代码需要手动加载spring容器: Mybatis整合Spring 标签:drive 数据 instance string oss 最大连接数 work actor apc 原文地址:https://www.cnblogs.com/dennyw/p/14192615.htmlMybatis整合Spring
package com.nhu.boom.test;
public class TestMapper {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("spring-framework.xml");
CKKuCunServiceImpl ckKuCunServiceImpl = (CKKuCunServiceImpl)context.getBean(CKKuCunServiceImpl.class);
List
上一篇:获取线程的执行结果
下一篇:python3 多线程,线程锁