Navigation :
test ../ test user-ref.html
User & Reference Guide
test ../ test getting-started.html
Getting started
test ../ test getting-started/using-this-guide.html
- Using this guide
test ../ test getting-started/whats-new.html
- What's New
test ../ test getting-started/frtb-data-model.html
- FRTB Data Model
test ../ test getting-started/directquery.html
- DirectQuery
test ../ test configuration.html
Configuration files
test ../ test configuration/startup-properties.html
- Startup properties
test ../ test configuration/front-template.html
-
test ../ test configuration/calendars.html
- Calendars
test ../ test configuration/commodity_bucketriskweights.html
- Commodity_BucketRiskWeights
test ../ test configuration/commodity_intrabucketcorrelations.html
- Commodity_IntraBucketCorrelations
test ../ test configuration/csr-non-sec-buckets.html
- CSR non-Sec Buckets
test ../ test configuration/csr-non-sec-high-ratings.html
- CSR non-Sec High Ratings
test ../ test configuration/csr-sec-ctp-buckets.html
- CSR Sec CTP Buckets
test ../ test configuration/csr-sec-non-ctp-buckets.html
- CSR Sec non-CTP Buckets
test ../ test configuration/csr_bucketsriskweights_nonsec.html
- CSR_BucketsRiskWeights_NONSEC
test ../ test configuration/csr_bucketsriskweights_secctp.html
- CSR_BucketsRiskWeights_SECCTP
test ../ test configuration/csr_bucketsriskweights_secnonctp.html
- CSR_BucketsRiskWeights_SECNONCTP
test ../ test configuration/csrns_bucket_correlations.html
- CSRNS_Bucket_Correlations
test ../ test configuration/default_risk_weights.html
- Default_Risk_Weights
test ../ test configuration/eqty_bucketsriskweights.html
- EQTY_BucketsRiskWeights
test ../ test configuration/erba_risk_weight.html
- ERBA_Risk_Weight
test ../ test configuration/frtb-config_properties.html
- frtb-config.properties
test ../ test configuration/frtb-data-load-properties.html
- frtb-data-load.properties
test ../ test configuration/frtbparameters.html
- FRTBParameters
test ../ test configuration/fx_risk_weight_overrides.html
- FX Risk-Weight Overrides
test ../ test configuration/fx_special_crosses.html
- FX_Special_Crosses
test ../ test configuration/girr_correlation_overrides.html
- GIRR Correlation Overrides
test ../ test configuration/girr_delta_weightings.html
- GIRR_Delta_Weightings
test ../ test configuration/girr_major_currency.html
- GIRR_Major_Currency
test ../ test configuration/hibernate-properties.html
- hibernate.properties
test ../ test configuration/instrument_lgd.html
- Instrument_LGD
test ../ test configuration/liquidityhorizons.html
- LiquidityHorizons
test ../ test configuration/ima-multiplier.html
- Multiplier
test ../ test configuration/obligor_risk_weights.html
- Obligor_Risk_Weights
test ../ test configuration/option_residual_maturity_vertices.html
- Option_Residual_Maturity_Vertices
test ../ test configuration/parameterset.html
- ParameterSet
test ../ test configuration/sensitivity_scaling.html
- Sensitivity Scaling
test ../ test configuration/signoff-export-properties.html
- signoff.export.properties
test ../ test configuration/signoff-properties.html
- signoff.properties
test ../ test configuration/user-detail.html
- user-detail
test ../ test configuration/vega_liquidity_horizons.html
- Vega_Liquidity_Horizons
test ../ test configuration/vertices.html
- Vertices
test ../ test datastore.html
Data Stores
test ../ test database.html
Database
test ../ test input-files.html
Input Data
test ../ test tutorials.html
Tutorials
test ../ test tutorials/data-sanity-check.html
- Data Sanity Check
test ../ test tutorials/tips-for-validating-the-calculations.html
- Tips for Validating the Calculations
test ../ test tutorials/viewing-qis-numbers.html
- Viewing QIS Numbers
test ../ test interpret-impl.html
Interpretation and Implementation of the MAR standard
test ../ test cube.html
Analytics Reference
test ../ test dev.html
Developer Guide
test ../ test dev/dev-release.html
-
Release and migration notes
test ../ test dev/dev-getting-started.html
-
Getting Started
test ../ test dev/dev-ui-config.html
-
Configuring the UI
test ../ test dev/dev-ref-impl.html
-
FRTB Reference Implementation
test ../ test dev/dev-core.html
-
FRTB Core
test ../ test dev/dev-extensions.html
-
Extending the Solution
test ../ test dev/dev-tools.html
-
Configuring Solution tools and methodologies
test ../ test dev/dev-sign-off.html
-
Sign-Off
test ../ test dev/dev-direct-query.html
-
DirectQuery
test ../ test limits.html
Limit monitoring
test ../ test sign-off.html
Sign-Off Approvals
test ../ test what-if.html
What-If Analysis
test ../ test pdf-guides.html
PDF Guides
test ../ test glossary.html
Glossary
hibernate.properties
File purpose
The hibernate.properties file is used to configure the Content Service database and connections to the Content Server.
Hibernate properties are prefixed with content-service.db
and are used in LocalContentServiceConfig
.
For standard field meanings, see Hibernate - Chapter 3. Configuration .
File values
Property
Default value
Description
content-service.db.hibernate.dialect
org.hibernate.dialect.H2Dialect
SQL dialect used for the Hibernate connection to the content server.
content-service.db.hibernate.show_sql
false
Enable/disable the logging of all generated SQL statements to the console.
content-service.db.hibernate.format_sql
false
Enable/disable formatting the generated SQL statement. Enabling this makes the statement more readable, but takes up more screen space.
content-service.db.hibernate.hbm2ddl.auto
update
Hibernate database schema generation process. Possible values are: none, create-only, drop, create, create-drop, validate, update.
content-service.db.hibernate.connection.provider_class
org.hibernate.engine.jdbc.connections.internal.DatasourceConnectionProviderImpl
Implementation of the ConnectionProvider.
content-service.db.url
jdbc:h2:%{dbfile};DB_CLOSE_DELAY=-1
The URL of the Hibernate connection to the content server.
content-service.db.file.name
frtb_ref_impl_content_service
The name of the dbfile used in the Hibernate connection URL.
%{dbfile}** wildcard on the database URL.
content-service.db.defaultAutoCommit
false
The default auto-commit state of connections created by this pool.
content-service.db.driverClassName
org.h2.Driver
The fully qualified Java class name of the JDBC driver to be used.
content-service.db.jdbcInterceptors
org.apache.tomcat.jdbc.pool.interceptor.ConnectionState
A semicolon-separated list of classnames, extending the org.apache.tomcat.jdbc.pool.JdbcInterceptor class. These interceptors will be inserted as an interceptor into the chain of operations on a java.sql.Connection object.