You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2019/04/15 13:02:12 UTC

[syncope] branch 2_1_X updated (301bbf7 -> 3c50ad0)

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a change to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git.


    from 301bbf7  Upgrading OpenJPA, Swagger UI and Wicket-Bootstrap
     new 91dbd41  [SYNCOPE-1400] Adding support for MySQL 8 via OpenJPA 3.0.1 + [SYNCOPE-1401] Adding support for MySQL with JSON type
     new 3c50ad0  [SYNCOPE-1401] fix json search DAO for mysql

The 6365 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 core/persistence-jpa-json/pom.xml                  | 138 +++++++---
 ...AJSONAnyDAO.java => AbstractJPAJSONAnyDAO.java} |  85 ++----
 .../jpa/dao/AbstractJPAJSONAnySearchDAO.java       |  87 ++++++
 .../core/persistence/jpa/dao/MyJPAJSONAnyDAO.java  | 120 ++++++++
 ...nySearchDAO.java => MyJPAJSONAnySearchDAO.java} | 156 +++--------
 .../core/persistence/jpa/dao/PGJPAJSONAnyDAO.java  | 303 ++-------------------
 .../persistence/jpa/dao/PGJPAJSONAnySearchDAO.java | 100 +------
 .../jpa/entity/JPAJSONEntityFactory.java           |   3 +-
 ...ityFactory.java => MyJPAJSONEntityFactory.java} |  10 +-
 ...pring-orm-pgjsonb.xml => spring-orm-myjson.xml} |   8 +-
 .../{pgjsonb => }/domains/MasterContent.xml        |   0
 .../resources/myjson}/domains/Master.properties    |  10 +-
 .../main/resources/{pgjsonb => myjson}/indexes.xml |   5 -
 .../{pgjsonb => myjson}/persistence.properties     |   4 +-
 .../main/resources/{pgjsonb => myjson}/views.xml   |  49 +++-
 .../{pgjsonb => }/domains/MasterContent.xml        |   0
 .../core/persistence/jpa/dao/JPAAnySearchDAO.java  |  40 ++-
 .../core/persistence/jpa/dao/SearchSupport.java    |  33 ---
 .../main/resources/audit/audit_mysql_innodb.sql    |   2 +-
 .../core/persistence/jpa/inner/AnyTypeTest.java    |   2 +
 .../resources/domains/Master.properties.mariadb    |   2 +-
 .../main/resources/domains/Master.properties.mysql |   2 +-
 fit/core-reference/pom.xml                         | 168 +++++++++++-
 .../resources/mariadb/domains/Master.properties    |   2 +-
 .../{mysql => myjson}/domains/Master.properties    |  10 +-
 .../main/resources/myjson/provisioning.properties  |   0
 .../main/resources/mysql/domains/Master.properties |   8 +-
 .../main/resources/mysql/provisioning.properties   |   2 +-
 pom.xml                                            |   5 +-
 .../systemadministration/dbms.adoc                 | 110 +++++++-
 30 files changed, 771 insertions(+), 693 deletions(-)
 copy core/persistence-jpa-json/src/main/java/org/apache/syncope/core/persistence/jpa/dao/{PGJPAJSONAnyDAO.java => AbstractJPAJSONAnyDAO.java} (80%)
 create mode 100644 core/persistence-jpa-json/src/main/java/org/apache/syncope/core/persistence/jpa/dao/AbstractJPAJSONAnySearchDAO.java
 create mode 100644 core/persistence-jpa-json/src/main/java/org/apache/syncope/core/persistence/jpa/dao/MyJPAJSONAnyDAO.java
 copy core/persistence-jpa-json/src/main/java/org/apache/syncope/core/persistence/jpa/dao/{PGJPAJSONAnySearchDAO.java => MyJPAJSONAnySearchDAO.java} (61%)
 copy core/persistence-jpa-json/src/main/java/org/apache/syncope/core/persistence/jpa/entity/{PGJPAJSONEntityFactory.java => MyJPAJSONEntityFactory.java} (81%)
 copy core/persistence-jpa-json/src/main/resources/META-INF/{spring-orm-pgjsonb.xml => spring-orm-myjson.xml} (96%)
 rename core/persistence-jpa-json/src/main/resources/{pgjsonb => }/domains/MasterContent.xml (100%)
 copy {fit/core-reference/src/main/resources/mysql => core/persistence-jpa-json/src/main/resources/myjson}/domains/Master.properties (76%)
 copy core/persistence-jpa-json/src/main/resources/{pgjsonb => myjson}/indexes.xml (87%)
 copy core/persistence-jpa-json/src/main/resources/{pgjsonb => myjson}/persistence.properties (91%)
 copy core/persistence-jpa-json/src/main/resources/{pgjsonb => myjson}/views.xml (73%)
 rename core/persistence-jpa-json/src/test/resources/{pgjsonb => }/domains/MasterContent.xml (100%)
 copy fit/core-reference/src/main/resources/{mysql => myjson}/domains/Master.properties (76%)
 copy docker/core/src/main/resources/provisioning.properties.mysql => fit/core-reference/src/main/resources/myjson/provisioning.properties (100%)