-
Notifications
You must be signed in to change notification settings - Fork 2
Fix incorrect properties in Hibernate second level article #255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary of Changes
Hello @rashidi, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
This pull request addresses an inaccuracy in the documentation by updating specific Hibernate property names used for configuring the second-level cache with JCache and EhCache. The change ensures that the provided configuration examples are correct and align with the expected property keys, improving the clarity and usability of the article for developers setting up Hibernate caching.
Highlights
- Documentation Correction: Corrected two Hibernate property names related to JCache configuration within the second-level cache article. The properties
hibernate.javax.cache.uri
andhibernate.javax.cache.provider
were updated to their correct forms:hibernate.cache.jcache.uri
andhibernate.cache.jcache.provider
respectively.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request correctly updates the Hibernate JCache property names in the documentation files, aligning them with modern Hibernate versions and the project's configuration. The changes enhance the accuracy of the article.
I've added a couple of minor suggestions to improve the conciseness of the documentation.
@@ -53,8 +53,8 @@ spring.jpa.properties.hibernate.cache.use_second_level_cache=true | |||
These properties configure Hibernate to: | |||
|
|||
* Use JCache as the caching implementation (`hibernate.cache.region.factory_class=jcache`) | |||
* Use the EhCache configuration file located at `/ehcache.xml` (`hibernate.javax.cache.uri=/ehcache.xml`) | |||
* Use EhCache as the JCache provider (`hibernate.javax.cache.provider=org.ehcache.jsr107.EhcacheCachingProvider`) | |||
* Use the EhCache configuration file located at `/ehcache.xml` (`hibernate.cache.jcache.uri=/ehcache.xml`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While the property name is now correct, the description for hibernate.cache.jcache.uri
is slightly redundant. It mentions the configuration file path /ehcache.xml
, which is also shown as the property's value. For better conciseness and consistency with other items in the list, consider rephrasing this line.
* Specify the EhCache configuration file URI (`hibernate.cache.jcache.uri=/ehcache.xml`)
@@ -51,8 +51,8 @@ spring.jpa.properties.hibernate.cache.use_second_level_cache=true | |||
These properties configure Hibernate to: | |||
|
|||
* Use JCache as the caching implementation (`hibernate.cache.region.factory_class=jcache`) | |||
* Use the EhCache configuration file located at `/ehcache.xml` (`hibernate.javax.cache.uri=/ehcache.xml`) | |||
* Use EhCache as the JCache provider (`hibernate.javax.cache.provider=org.ehcache.jsr107.EhcacheCachingProvider`) | |||
* Use the EhCache configuration file located at `/ehcache.xml` (`hibernate.cache.jcache.uri=/ehcache.xml`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While the property name is now correct, the description for hibernate.cache.jcache.uri
is slightly redundant. It mentions the configuration file path /ehcache.xml
, which is also shown as the property's value. For better conciseness and consistency with other items in the list, consider rephrasing this line.
* Specify the EhCache configuration file URI (`hibernate.cache.jcache.uri=/ehcache.xml`)
No description provided.