-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: stabilize Database Initialization - MEED-6794 - Meeds-io/MIPs#132
Prior to this change, Portal database changelogs are processed late in the startup using PortalCotnainer. This change makes sure to initialize the database using RootContainer to make sure that the Database initialization is made before any other service startup.
- Loading branch information
Showing
5 changed files
with
153 additions
and
72 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
59 changes: 59 additions & 0 deletions
59
component/identity/src/main/resources/conf/configuration.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,59 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
This file is part of the Meeds project (https://meeds.io/). | ||
Copyright (C) 2020 - 2024 Meeds Association [email protected] | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 3 of the License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program; if not, write to the Free Software Foundation, | ||
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
--> | ||
<configuration | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd http://www.exoplatform.org/xml/ns/kernel_1_2.xsd" | ||
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd"> | ||
<external-component-plugins> | ||
<target-component>org.exoplatform.commons.api.persistence.DataInitializer</target-component> | ||
<component-plugin> | ||
<name>IDMChangeLogsPlugin</name> | ||
<set-method>addChangeLogsPlugin</set-method> | ||
<type>org.exoplatform.commons.persistence.impl.ChangeLogsPlugin</type> | ||
<init-params> | ||
<values-param> | ||
<name>changelogs</name> | ||
<description>Change logs of idm queue</description> | ||
<value>db/changelog/idm.queue.db.changelog-1.0.0.xml</value> | ||
</values-param> | ||
</init-params> | ||
</component-plugin> | ||
<component-plugin> | ||
<name>IDMChangeLogsPlugin</name> | ||
<set-method>addChangeLogsPlugin</set-method> | ||
<type>org.exoplatform.commons.persistence.impl.ChangeLogsPlugin</type> | ||
<init-params> | ||
<value-param> | ||
<name>datasource</name> | ||
<description>Change logs of IDM database</description> | ||
<value>${exo.idm.datasource.name:java:/comp/env/exo-idm_portal}</value> | ||
</value-param> | ||
<values-param> | ||
<name>changelogs</name> | ||
<description>Change logs of IDM database</description> | ||
<value>db/changelog/idm.db.changelog-1.0.0.xml</value> | ||
</values-param> | ||
</init-params> | ||
</component-plugin> | ||
</external-component-plugins> | ||
</configuration> |
42 changes: 42 additions & 0 deletions
42
component/portal/src/main/resources/conf/configuration.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,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
This file is part of the Meeds project (https://meeds.io/). | ||
Copyright (C) 2020 - 2024 Meeds Association [email protected] | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 3 of the License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program; if not, write to the Free Software Foundation, | ||
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
--> | ||
<configuration | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd http://www.exoplatform.org/xml/ns/kernel_1_2.xsd" | ||
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd"> | ||
<external-component-plugins> | ||
<target-component>org.exoplatform.commons.api.persistence.DataInitializer</target-component> | ||
<component-plugin> | ||
<name>PortalRDBMSChangeLogsPlugin</name> | ||
<set-method>addChangeLogsPlugin</set-method> | ||
<type>org.exoplatform.commons.persistence.impl.ChangeLogsPlugin</type> | ||
<init-params> | ||
<values-param> | ||
<name>changelogs</name> | ||
<description>Change logs of Portal RDBMS</description> | ||
<value>db/changelog/portal-rdbms.db.changelog-1.0.0.xml</value> | ||
</values-param> | ||
</init-params> | ||
</component-plugin> | ||
</external-component-plugins> | ||
</configuration> |
43 changes: 40 additions & 3 deletions
43
component/web/security/src/main/resources/conf/configuration.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 |
---|---|---|
@@ -1,12 +1,49 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
This file is part of the Meeds project (https://meeds.io/). | ||
Copyright (C) 2020 - 2024 Meeds Association [email protected] | ||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 3 of the License, or (at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program; if not, write to the Free Software Foundation, | ||
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
--> | ||
<configuration | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd http://www.exoplatform.org/xml/ns/kernel_1_2.xsd" | ||
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd"> | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd http://www.exoplatform.org/xml/ns/kernel_1_2.xsd" | ||
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd"> | ||
|
||
<!-- SecureRandomService configured at RootContainer scope to be initialized just once per JVM --> | ||
<component> | ||
<key>org.exoplatform.web.security.security.SecureRandomService</key> | ||
<type>org.exoplatform.web.security.security.SecureRandomService</type> | ||
</component> | ||
|
||
<external-component-plugins> | ||
<target-component>org.exoplatform.commons.api.persistence.DataInitializer</target-component> | ||
<component-plugin> | ||
<name>PortalRDBMSChangeLogsPlugin</name> | ||
<set-method>addChangeLogsPlugin</set-method> | ||
<type>org.exoplatform.commons.persistence.impl.ChangeLogsPlugin</type> | ||
<init-params> | ||
<values-param> | ||
<name>changelogs</name> | ||
<description>Change logs of Portal RDBMS</description> | ||
<value>db/changelog/gatein-token.db.changelog-1.0.0.xml</value> | ||
</values-param> | ||
</init-params> | ||
</component-plugin> | ||
</external-component-plugins> | ||
</configuration> |
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