목차

Hibernate Configurations

hibernate.hbm2ddl.auto 프라퍼티

hibernate.use_sql_comments 프라퍼티

hibernate.jdbc.time_zone

settings.put(
    AvailableSettings.JDBC_TIME_ZONE,
    TimeZone.getTimeZone( "UTC" )
);
 
// or
Session session = sessionFactory()
    .withOptions()
    .jdbcTimeZone( TimeZone.getTimeZone( "UTC" ) )
    .openSession();

hibernate.temp.use_jdbc_metadata_defaults

hibernate.enable_lazy_load_no_trans=true 금지

hibernate.globally_quoted_identifiers=true

hibernate.globally_quoted_identifiers=true
hibernate.globally_quoted_identifiers_skip_column_definitions=true

hibernate.query.in_clause_parameter_padding

hibernate.query.plan_cache_max_size

hibernate.query.fail_on_pagination_over_collection_fetch

hibernate.query.fail_on_pagination_over_collection_fetch=true