From 3dfdb64a09e80342ed138338d6c881ab0220aa28 Mon Sep 17 00:00:00 2001 From: Joerg Hohwiller Date: Tue, 31 Jul 2018 15:05:47 +0200 Subject: [PATCH] #627: changed template to use spring-data repository instead of DAO --- .../archetype-resources/core/pom.xml | 6 ---- .../SpringBootApp.java | 3 ++ .../dataaccess/api/dao/ApplicationDao.java | 14 --------- .../api/dao/ApplicationRevisionedDao.java | 15 ---------- .../dataaccess/api/dao/BinaryObjectDao.java | 10 ------- .../api/dao/BinaryObjectRepository.java | 11 +++++++ .../base/dao/ApplicationDaoImpl.java | 26 ---------------- .../dao/ApplicationMasterDataDaoImpl.java | 30 ------------------- .../base/dao/BinaryObjectDaoImpl.java | 20 ------------- .../logic/impl/UcManageBinaryObjectImpl.java | 24 +++++++-------- 10 files changed, 26 insertions(+), 133 deletions(-) delete mode 100644 templates/server/src/main/resources/archetype-resources/core/src/main/java/__packageInPathFormat__/general/dataaccess/api/dao/ApplicationDao.java delete mode 100644 templates/server/src/main/resources/archetype-resources/core/src/main/java/__packageInPathFormat__/general/dataaccess/api/dao/ApplicationRevisionedDao.java delete mode 100644 templates/server/src/main/resources/archetype-resources/core/src/main/java/__packageInPathFormat__/general/dataaccess/api/dao/BinaryObjectDao.java create mode 100644 templates/server/src/main/resources/archetype-resources/core/src/main/java/__packageInPathFormat__/general/dataaccess/api/dao/BinaryObjectRepository.java delete mode 100644 templates/server/src/main/resources/archetype-resources/core/src/main/java/__packageInPathFormat__/general/dataaccess/base/dao/ApplicationDaoImpl.java delete mode 100644 templates/server/src/main/resources/archetype-resources/core/src/main/java/__packageInPathFormat__/general/dataaccess/base/dao/ApplicationMasterDataDaoImpl.java delete mode 100644 templates/server/src/main/resources/archetype-resources/core/src/main/java/__packageInPathFormat__/general/dataaccess/base/dao/BinaryObjectDaoImpl.java diff --git a/templates/server/src/main/resources/archetype-resources/core/pom.xml b/templates/server/src/main/resources/archetype-resources/core/pom.xml index 97286fdb4..ea8e7bb62 100644 --- a/templates/server/src/main/resources/archetype-resources/core/pom.xml +++ b/templates/server/src/main/resources/archetype-resources/core/pom.xml @@ -63,12 +63,6 @@ io.oasp.java.starters oasp4j-starter-spring-data-jpa - - - - io.oasp.java.modules - oasp4j-jpa-envers -