diff options
author | liamfallon <liam.fallon@est.tech> | 2023-02-02 14:53:43 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2023-02-02 18:03:35 +0000 |
commit | 70ddcbe8e34eda99a7e6e9f383cc78a0d6f0cbd2 (patch) | |
tree | 491c8cbafdea48b8e9d82e003488572fd9317883 /controlloop/common/eventmanager/src/main/resources | |
parent | 0d52472a24ba317d6c96fcd215c7f2a2b6bd43f8 (diff) |
Replace Eclipselink with Hibernate
Issue-ID: POLICY-4533
Change-Id: Ica9b02be76ba45461e615e806d779b0799681680
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'controlloop/common/eventmanager/src/main/resources')
-rw-r--r-- | controlloop/common/eventmanager/src/main/resources/META-INF/persistence.xml | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/controlloop/common/eventmanager/src/main/resources/META-INF/persistence.xml b/controlloop/common/eventmanager/src/main/resources/META-INF/persistence.xml index f5d313adc..115ec51ae 100644 --- a/controlloop/common/eventmanager/src/main/resources/META-INF/persistence.xml +++ b/controlloop/common/eventmanager/src/main/resources/META-INF/persistence.xml @@ -1,9 +1,10 @@ -<?xml version="1.0" encoding="UTF-8" ?> +<?xml version="1.0" encoding="UTF-8"?> <!-- ============LICENSE_START======================================================= drools-applications ================================================================================ Copyright (C) 2018-2021 AT&T Intellectual Property. All rights reserved. + Modifications Copyright (C) 2023 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -18,19 +19,15 @@ limitations under the License. ============LICENSE_END========================================================= --> -<persistence version="2.1" - xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> +<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> - <persistence-unit name="OperationsHistoryPU" - transaction-type="RESOURCE_LOCAL"> - <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider> + <persistence-unit name="OperationsHistoryPU" transaction-type="RESOURCE_LOCAL"> + <class>org.onap.policy.guard.OperationsHistory</class> - <class>org.onap.policy.guard.OperationsHistory</class> - - <properties> - <property name="eclipselink.ddl-generation" value="create-or-extend-tables" /> - <property name="eclipselink.logging.level" value="WARNING" /> - </properties> - </persistence-unit> + <properties> + <property name="javax.persistence.schema-generation.database.action" value="create" /> + <property name="hibernate.dialect" value="org.hibernate.dialect.MariaDBDialect" /> + <property name="hibernate.show_sql" value="false" /> + </properties> + </persistence-unit> </persistence> |