书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 1400 个相关结果.
  • 11.3.3. 脱管对象(deatched object)和自动版本化

    11.3.3. 脱管对象(deatched object)和自动版本化 11.3.3. 脱管对象(deatched object)和自动版本化 这种方式下,与持久化存储的每次交互都发生在一个新的Session 中。 然而,同一持久化对象实例可以在多次与数据库的交互中重用。应用程序操纵脱管对象实例 的状态,这个脱管对象实例最初是在另一个Session ...
  • 5.8 Bridging Spring AOP

    5.8 Bridging Spring AOP 5.8 Bridging Spring AOP Although Micronaut’s design is based on a compile time approach and does not rely on Spring dependency injection, there is still...
  • 5.8 Bridging Spring AOP

    5.8 Bridging Spring AOP 5.8 Bridging Spring AOP Although Micronaut’s design is based on a compile time approach and does not rely on Spring dependency injection, there is still...
  • 概述

    配置文件模块概述 由来 Setting Props 配置文件模块概述 由来 Setting 众所周知,Java中广泛应用的配置文件Properties存在一个特别大的诟病:不支持中文。每次使用时,如果想存放中文字符,必须借助IDE相关插件才能转为Unicode符号,而这种反人类的符号在命令行下根本没法看(想想部署在服务器上后修改配置文件...
  • 14.13. HQL示例

    14.13. HQL示例 14.13. HQL示例 Hibernate查询可以非常的强大与复杂。实际上,Hibernate的一个主要卖点就是查询语句的威力。这里有一些例子,它们与我在最近的 一个项目中使用的查询非常相似。注意你能用到的大多数查询比这些要简单的多! 下面的查询对于某个特定的客户的所有未支付的账单,在给定给最小总价值的情况下,返回订单的...
  • 快速预览

    简要概述依赖管理 不算完美的依赖管理技术 自动管理依赖的重要性 自动依赖管理面临的挑战 简要概述依赖管理 几乎所有基于JVM的项目都会或多或少依赖其他库,假设你在开发一个基于web的项目,你很可能会依赖很受欢迎的开源框架比如Spring MVC来提高效率。Java的第三方库一般以JAR文件的形式存在,一般用库名加版本号来标识。随着开发的进行依赖...
  • Context Propagation

    533 2021-07-08 《Quarkus v1.7 Guides》
    Context Propagation in Quarkus Setting it up Usage example with Mutiny Usage example for CompletionStage Adding support for RxJava2 Context Propagation in Quarkus Traditio...
  • 8.2. 在集合中出现的依赖对象 (Collections of dependent objects)

    8.2. 在集合中出现的依赖对象 (Collections of dependent objects) 8.2. 在集合中出现的依赖对象 (Collections of dependent objects) Hibernate支持组件的集合(例如: 一个元素是姓名(Name)这种类型的数组)。 你可以使用<composite-element&g...
  • 1 Introduction

    1 Introduction 1.1 What’s New? Support for GraalVM 20.0.0 Startup and Memory Usage Optimizations Micronaut Data Integration Initial Support for Kotlin Coroutines and Flow Immut...
  • 18.3. 操作XML数据

    18.3. 操作XML数据 18.3. 操作XML数据 让我们来读入和更新应用程序中的XML文档。通过获取一个dom4j会话可以做到这一点: Document doc = ....; Session session = factory . openSession (); Session dom4jSession = ...