码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • Spring整合Mybatis


    1. 引入mybatis

    
    
    
        
            
            
        
    
    

    2.引入spring

    创建spring-mybatis.xml文件

    1. "1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xmlns:context="http://www.springframework.org/schema/context"
    5. xmlns:tx="http://www.springframework.org/schema/tx"
    6. xmlns:aop="http://www.springframework.org/schema/aop"
    7. xsi:schemaLocation="http://www.springframework.org/schema/beans
    8. http://www.springframework.org/schema/beans/spring-beans.xsd
    9. http://www.springframework.org/schema/context
    10. http://www.springframework.org/schema/context/spring-context-3.2.xsd
    11. http://www.springframework.org/schema/tx
    12. http://www.springframework.org/schema/tx/spring-tx.xsd
    13. http://www.springframework.org/schema/aop
    14. http://www.springframework.org/schema/aop/spring-aop.xsd
    15. ">
    16. <context:property-placeholder location="classpath:jdbc.properties"/>
    17. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
    18. <property name="driverClass" value="${jdbc.Driver}"/>
    19. <property name="jdbcUrl" value="${jdbc.url}"/>
    20. <property name="user" value="${jdbc.username}"/>
    21. <property name="password" value="${jdbc.pwd}"/>
    22. bean>
    23. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    24. <property name="dataSource" ref="dataSource"/>
    25. <property name="configLocation" value="classpath:mybatis.xml"/>
    26. <property name="typeAliasesPackage" value="com.hz.pojo"/>
    27. <property name="mapperLocations" value="classpath:mappers/*.xml"/>
    28. bean>
    29. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    30. <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
    31. <property name="basePackage" value="com.hz.mapper"/>
    32. bean>
    33. <context:component-scan base-package="com.hz.service"/>
    34. beans>

    注意:

            mybatis中虽然可以同时解析注解和xml但是,但是不能同时对同一个方法既注解又XML配置,不然会报错。

  • 相关阅读:
    理解前端工程化
    windows下sqlite的.dll生成.lib和c编程
    .net framework、.net standard、 .net core .net 5/6 区别
    数仓开发之DWD层(二)
    leetcode经典面试150题---1.合并两个有序数组
    Linux 本地 Docker Registry本地镜像仓库远程连接
    Python实现办公自动化读书笔记——自动化处理Word文档
    【插槽】Vue中插槽Slot基本使用和具名插槽
    神经网络物联网平台搭建(物联网平台搭建实战教程)
    北京旅游HTML学生网页设计作品 dreamweaver作业静态HTML网页设计模板 北京旅游景点网页作业制作 HTML+CSS+JS
  • 原文地址:https://blog.csdn.net/qq_44114187/article/details/133069870
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号