[BUG] Fix memory leak related to using arrays in Hibernate 13/139113/5
authordanielhanrahan <daniel.hanrahan@est.tech>
Wed, 2 Oct 2024 20:31:04 +0000 (21:31 +0100)
committerdanielhanrahan <daniel.hanrahan@est.tech>
Thu, 3 Oct 2024 20:04:09 +0000 (21:04 +0100)
commit153aa48c6945cfc54ceb1b3f6a38508ad93f1d16
tree9b4510292b2efd1e11d34f4493d7604ea98d2172
parent2686ec95a09bafa2846860d403516f89cb2ed0c0
[BUG] Fix memory leak related to using arrays in Hibernate

The use of arrays like String[] instead of Collection<String> in
JpaRepository methods is causing a memory leak, most likely due to a
bug in the hypersistence-utils dependency which provides the feature.
Note code using arrays in JDBC (via jdbcTemplate) is not affected.

This patch removes most uses of arrays in Java, except one needed for
FragmentPrefetchRepository using JDBC setArray(), which is safe.

Issue-ID: CPS-2430
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: I94f8c3d4c8c32ebe0978c08d3226a196a95bf3b9
cps-path-parser/src/main/java/org/onap/cps/cpspath/parser/CpsPathUtil.java
cps-ri/src/main/java/org/onap/cps/ri/CpsDataPersistenceServiceImpl.java
cps-ri/src/main/java/org/onap/cps/ri/repository/AnchorRepository.java
cps-ri/src/main/java/org/onap/cps/ri/repository/FragmentRepository.java
cps-ri/src/main/java/org/onap/cps/ri/repository/ModuleReferenceRepositoryImpl.java
cps-ri/src/main/java/org/onap/cps/ri/repository/SchemaSetRepository.java
cps-ri/src/main/java/org/onap/cps/ri/repository/TempTableCreator.java
cps-ri/src/main/java/org/onap/cps/ri/repository/YangResourceRepository.java
cps-service/src/main/java/org/onap/cps/utils/YangParserHelper.java