-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5516 from tkafalas/feature
[BACKLOG-39719][BACKLOG-39705][SP-4826] Bug fixes and changes for Int…
- Loading branch information
Showing
6 changed files
with
56 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
extensions/src/test/resources/cache-solution/system/hibernate/hibernate-settings.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<settings> | ||
<!-- | ||
* This setting allows the deployment to specify where to find the | ||
* database-specific hibernate configuration. The samples supplied | ||
* include the following: | ||
* | ||
* system/hibernate/hsql.hibernate.cfg.xml | ||
* system/hibernate/mysql5.hibernate.cfg.xml | ||
* system/hibernate/postgresql.hibernate.cfg.xml | ||
* system/hibernate/oracle10g.hibernate.cfg.xml | ||
* | ||
--> | ||
<!-- DEV TESTING ONLY --> | ||
<config-file>system/hibernate/postgresql.hibernate.cfg.xml</config-file> | ||
|
||
<!-- | ||
* | ||
* managed should be set to true if running the BI Platform | ||
* in a managed environment (like JBoss, Orion, etc). In this configuration, | ||
* you should specify another location for the hibernate.cfg.xml (see below) | ||
* instead of simply using the default one provided. This setting essentially | ||
* tells the HibernateUtil class to use JNDI to locate the factory class for | ||
* getting sessions. This allows the platform to use Hibernate across boundaries | ||
* in message beans (for example). | ||
* | ||
<managed>false</managed> | ||
--> | ||
|
||
<managed>false</managed> | ||
</settings> |