About 7,930 results
Open links in new tab
  1. MyBatis 3 | Getting started – mybatis

    Let's take a look at XML first. The full set of features provided by MyBatis can be realized by using the XML based mapping language that has made MyBatis popular over the years. If you've used …

  2. MyBatis 3 | 简介 – mybatis

    MyBatis 是一款优秀的持久层框架,它支持自定义 SQL、存储过程以及高级映射。 MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。

  3. MyBatis 3 | 入门 – mybatis

    我们先看看 XML 定义语句的方式,事实上 MyBatis 提供的所有特性都可以利用基于 XML 的映射语言来实现,这使得 MyBatis 在过去的数年间得以流行。

  4. MyBatis 3 | Introduction – mybatis

    MyBatis is a first class persistence framework with support for custom SQL, stored procedures and advanced mappings. MyBatis eliminates almost all of the JDBC code and manual setting …

  5. 项目概要 – mybatis

    MyBatis 是一个强大的 SQL 映射框架,提供灵活的 Java 应用程序开发解决方案。

  6. MyBatis 3 | 配置 – mybatis

    既然 MyBatis 的行为已经由上述元素配置完了,我们现在就要来定义 SQL 映射语句了。 但首先,我们需要告诉 MyBatis 到哪里去找到这些语句。 在自动查找资源方面,Java 并没有提供一 …

  7. 简介 – mybatis-spring-boot-autoconfigure

    MyBatis-Spring-Boot-Starter 提供了使用 Java Config 来自定义 MyBatis 配置的可能。 MyBatis-Spring-Boot-Starter 将自动寻找实现了 ConfigurationCustomizer 接口的组件,调用自定义 …

  8. mybatis-spring

    在开始使用 MyBatis-Spring 之前,你需要先熟悉 Spring 和 MyBatis 这两个框架和有关它们的术语。 这很重要——因为本手册中不会提供二者的基本内容,安装和配置教程。

  9. MyBatis 3 | Java API – mybatis

    MyBatis 3 builds on top of a comprehensive and powerful Java based Configuration API. This Configuration API is the foundation for the XML based MyBatis configuration, as well as the …

  10. MyBatis 3 | 动态 SQL – mybatis

    使用动态 SQL 并非一件易事,但借助可用于任何 SQL 映射语句中的强大的动态 SQL 语言,MyBatis 显著地提升了这一特性的易用性。