vladmihalcea / hypersistence-optimizer

Hypersistence Optimizer allows you to get the most out of JPA and Hibernate. By scanning your application configuration and mappings, Hypersistence Optimizer can tell you what changes you need to do to speed up your data access layer.
https://vladmihalcea.com/hypersistence-optimizer/
Apache License 2.0
306 stars 43 forks source link

Document how to disable the banner #181

Closed vladmihalcea closed 1 year ago

vladmihalcea commented 1 year ago

Some users may want to disable the banner, and they can use the setBannerPrintingEnabled configuration for that:

new HypersistenceOptimizer(
    new JpaConfig(entityManagerFactory())
        .setBannerPrintingEnabled(false)
);

This should be documented in the User Guide.

vladmihalcea commented 1 year ago

Fixed.