书栈网 · BookStack 本次搜索耗时 0.027 秒,为您找到 1400 个相关结果.
  • 集成JPA

    集成JPA 练习 小结 读后有收获可以支付宝请作者喝咖啡: 集成JPA 上一节我们讲了在Spring中集成Hibernate。Hibernate是第一个被广泛使用的ORM框架,但是很多小伙伴还听说过JPA:Java Persistence API,这又是啥? 在讨论JPA之前,我们要注意到JavaEE早在1999年就发布了,并且有Servle...
  • 3.5. 日志

    3.5. 日志 3.5. 日志 Hibernate使用Apache commons-logging来为各种事件记录日志. commons-logging将直接输出到Apache Log4j(如果在类路径中包括log4j.jar )或 JDK1.4 logging (如果运行在JDK1.4或以上的环境下). 你可以从http://jakarta.ap...
  • 注释

    注释 Hibernate 注释的环境设置 注释类示例 @Entity 注释 @Table 注释 @Id 和 @GeneratedValue 注释 @Column Annotation 创建应用类 数据库配置 编译和执行 注释 到现在为止,你已经看到 Hibernate 如何使用 XML 映射文件来完成从 POJO 到数据库表的数据转...
  • 1.2.6. 加载并存储对象

    1.2.6. 加载并存储对象 1.2.6. 加载并存储对象 我们终于可以使用Hibernate来加载和存储对象了,编写一个带有main() 方法的EventManager 类: package events ; import org . hibernate . Session ; import java . util . Date...
  • 8. Transactions and concurrency control

    8. Transactions and concurrency control 8.1. Physical Transactions 8.2. JTA configuration 8.3. Hibernate Transaction API 8.4. Contextual sessions 8.5. Transactional patterns (a...
  • 7. Database access

    7. Database access 7.1. ConnectionProvider 7.2. Using DataSources 7.3. Driver Configuration 7.4. Using c3p0 7.5. Using Proxool 7.5.1. Using existing Proxool pools 7.5.2. Confi...
  • 1. Architecture

    1. Architecture 1.1. Overview 1. Architecture 1.1. Overview Hibernate, as an ORM solution, effectively “sits between” the Java application data access layer and the Rela...
  • WildFly module identifiers: slots and conventions

    WildFly module identifiers: slots and conventions WildFly module identifiers: slots and conventions Note that the Hibernate ORM modules coming with WildFly will remain untouche...
  • 29.3.3. 创建和删除JPA数据库

    29.3.3. 创建和删除JPA数据库 29.3.3. 创建和删除JPA数据库 默认情况下,只有在你使用内嵌数据库(H2, HSQL或Derby)时,JPA数据库才会被自动创建。你可以使用spring.jpa.* 属性显式的设置JPA,比如,将以下配置添加到application.properties 中可以创建和删除表: spring . jpa...
  • 3.8. J2EE应用程序服务器的集成

    3.8. J2EE应用程序服务器的集成 3.8. J2EE应用程序服务器的集成 针对J2EE体系,Hibernate有如下几个集成的方面: 容器管理的数据源(Container-managed datasources): Hibernate能使用通过容器管理,并由JNDI提供的JDBC连接. 通常, 特别是当处理多个数据源的分布式事务的时候, 由...