Hypersistence Optimizer is a dynamic analyzing tool that can scan your JPA and Hibernate application and provide you tips about the changes you need to make to entity mappings, configurations, queries, and Persistence Context actions to speed up your data access layer.
Once you downloaded the Full or Trial version, you need to follow a series of steps in order to install Hypersistence Optimizer.
The first thing you need to do is to unzip the package you have just downloaded.
> unzip hypersistence-optimizer-2.1.0-pack.zipAfter unzipping the project package, you will get the following file structure:
creating: hypersistence-optimizer-2.1.0/
creating: hypersistence-optimizer-2.1.0/lib/
inflating: hypersistence-optimizer-2.1.0/lib/hypersistence-optimizer-2.1.0-javadoc.jar
inflating: hypersistence-optimizer-2.1.0/lib/hypersistence-optimizer-2.1.0-sources.jar
inflating: hypersistence-optimizer-2.1.0/lib/hypersistence-optimizer-2.1.0.jar
creating: hypersistence-optimizer-2.1.0/configs/
creating: hypersistence-optimizer-2.1.0/configs/META-INF/
creating: hypersistence-optimizer-2.1.0/configs/META-INF/services/
inflating: hypersistence-optimizer-2.1.0/configs/META-INF/services/org.hibernate.boot.spi.SessionFactoryBuilderFactory
creating: hypersistence-optimizer-2.1.0/docs/
creating: hypersistence-optimizer-2.1.0/docs/html/
creating: hypersistence-optimizer-2.1.0/docs/pdf/
inflating: hypersistence-optimizer-2.1.0/docs/html/asciidoctor.css
inflating: hypersistence-optimizer-2.1.0/docs/html/coderay-asciidoctor.css
inflating: hypersistence-optimizer-2.1.0/docs/pdf/InstallationGuide.pdf
inflating: hypersistence-optimizer-2.1.0/docs/html/InstallationGuide.html
inflating: hypersistence-optimizer-2.1.0/docs/html/UserGuide.html
inflating: hypersistence-optimizer-2.1.0/docs/pdf/UserGuide.pdf
inflating: hypersistence-optimizer-2.1.0/changelog.txt
inflating: hypersistence-optimizer-2.1.0/LICENSE.txt
inflating: hypersistence-optimizer-2.1.0/maven-install.bat
inflating: hypersistence-optimizer-2.1.0/maven-install.sh
inflating: hypersistence-optimizer-2.1.0/README.txtThe package contains the following resources:
- the
libfolder contains the mainjarfile, as well as the JavaDoc and the Java sources - the
configsfolder contains a Java service loader configuration file that is going to be explained in the next steps - the
docsfolder contains the Installation and User Guides - the
changelogfile contains the release notes for all product versions - the
LICENSEfile contains the project license info - the
maven-installscripts allow you to install the Java artifacts in your local Maven repository - the
READMEfile contains a short description of the project
In order to install Hypersistence Optimizer, you need to read the Installation Guide, which is available both in HTML and PDF formats in the unzipped package:
hypersistence-optimizer-2.1.0/docs/pdf/InstallationGuide.pdfhypersistence-optimizer-2.1.0/docs/html/InstallationGuide.html
You can also read the Installation Guide online if you want.
After you are done with the Installation Guide, you should read the User Guide too, as it shows how you can configure Hypersistence Optimizer so that you can get the most out of it.
You can find the User Guide in the docs folder as well:
hypersistence-optimizer-2.1.0/docs/html/UserGuide.htmlhypersistence-optimizer-2.1.0/docs/pdf/UserGuide.pdf
You can also read the User Guide online if you want.
This repository contains examples for Spring Boot, Spring Framework, Java EE that can help you set up the tool.
By default, this repository is configured for the Full version.
If you want to use it with the Trial version, you should use the trial branch instead:
> git checkout trialYou should check out the entire repository since the child modules use the versions defined in the parent module
pom.xml.
There are multiple modules in this repository:
hypersistence-optimizer-test-casehypersistence-optimizer-config-examplehypersistence-optimizer-spring-boot-examplehypersistence-optimizer-spring-jpa-examplehypersistence-optimizer-spring-jpa-hibernate4-examplehypersistence-optimizer-spring-jpa-hibernate3-examplehypersistence-optimizer-spring-hibernate-examplehypersistence-optimizer-spring-hibernate4-examplehypersistence-optimizer-spring-hibernate3-examplehypersistence-optimizer-glassfish-hibernate-examplehypersistence-optimizer-glassfish-hibernate4-example
This module provides a test case template you could use to replicate a certain Hypersistence Optimizer issue.
This module shows various examples of how you can configure Hypersistence Optimizer.
This module shows how you can use Hypersistence Optimizer with Spring Boot.
This module shows how you can use Hypersistence Optimizer with Spring and the JPA LocalEntityManagerFactoryBean.
This module shows how you can use Hypersistence Optimizer with Spring, the JPA LocalEntityManagerFactoryBean, and Hibernate 4.
This module shows how you can use Hypersistence Optimizer with Spring, the JPA LocalEntityManagerFactoryBean, and Hibernate 3.
This module shows how you can use Hypersistence Optimizer with Spring and the Hibernate LocalSessionFactoryBean.
This module shows how you can use Hypersistence Optimizer with Spring and the Hibernate 4 LocalSessionFactoryBean.
This module shows how you can use Hypersistence Optimizer with Spring and the Hibernate 3 LocalSessionFactoryBean.
This module shows how you can use Hypersistence Optimizer with Java EE and GlassFish.
This module shows how you can use Hypersistence Optimizer with Java EE, GlassFish, and Hibernate 4.
If you'd like to create a new issue, be it a feature request or simply reporting a bug, then you can use this GitHub repository issue list.
For bugs, it would be awesome if you provided a replicating test case as well. You can use the EagerFetchingManyToOneTest as a template to create your new test case scenario.
When you are done, please send your test case as a Pull Request, and I'll take care of it.
Thank you for using Hypersistence Optimizer and stay tuned for more!