书栈网 · BookStack 本次搜索耗时 0.049 秒,为您找到 6709 个相关结果.
  • 集合的嵌套结果映射

    集合的嵌套结果映射 集合的嵌套结果映射 现在你可能已经猜到了集合的嵌套结果映射是怎样工作的——除了新增的 “ofType” 属性,它和关联的完全相同。 首先, 让我们看看对应的 SQL 语句: <select id = "selectBlog" resultMap = "blogResult" > select B.id a...
  • 动态 SQL 中的可插拔脚本语言

    动态 SQL 中的可插拔脚本语言 动态 SQL 中的可插拔脚本语言 MyBatis 从 3.2 开始支持可插拔脚本语言,这允许你插入一种脚本语言驱动,并基于这种语言来编写动态 SQL 查询语句。 可以通过实现以下接口来插入一种语言: public interface LanguageDriver { ParameterHand...
  • Overview

    Examples Bundled Examples Examples on the Web Examples Bundled Examples The Flink sources include many examples for Flink’s different APIs: DataStream applications (Java ...
  • QuerySet API 参考

    QuerySet API 参考 什么时候 QuerySet 被执行 Pickle 序列化 QuerySet QuerySet API 返回新 QuerySet 的方法 filter() exclude() annotate() alias() order_by() reverse() distinct() values...
  • 自动定位控制器

    如果你使用了多级控制器的话,可以设置controller_auto_search 参数开启自动定位控制器,便于URL访问,例如首先在配置文件中添加: 'controller_auto_search' => true , 然后定义控制器如下: namespace app\index\controller\one ; use ...
  • 演讲 & hudi 用户

    演讲 & Hudi 用户 已使用 Uber EMIS Health Yields.io Yotpo 演讲 & 报告 文章 演讲 & Hudi 用户 已使用 Uber Hudi最初由Uber 开发,用于实现低延迟、高效率的数据库摄取 。 Hudi自2016年8月开始在生产环境上线,在Hadoop上驱动约100个非常关键的业务表,支...
  • Views

    Views Pages Properties of a page component Layouts Default Layout Custom Layout Error Page Document: App.html Views The Views section describes all you need to know to co...
  • Introduction to Index Mappings

    Introduction to Index Mappings Default IndexMapping Document Type DocumentMappings FieldMappings Text Field specific options Date Field specific options Understanding Default...
  • Installation

    Installation Installation Server Requirements Installing Laravel Via Laravel Installer Via Composer Create-Project Local Development Server Configuration Public Directory Con...
  • 自动映射

    自动映射 自动映射 正如你在前面一节看到的,在简单的场景下,MyBatis 可以为你自动映射查询结果。但如果遇到复杂的场景,你需要构建一个结果映射。 但是在本节中,你将看到,你可以混合使用这两种策略。让我们深入了解一下自动映射是怎样工作的。 当自动映射查询结果时,MyBatis 会获取结果中返回的列名并在 Java 类中查找相同名字的属性(忽...