From 984f0a7f8c083af2d5884e60925bf5a9a9949b2b Mon Sep 17 00:00:00 2001 From: Srihari K Date: Mon, 1 Sep 2025 21:07:09 +0530 Subject: [PATCH 01/14] Fix PostgreSQL array handling in JdbcFeedSource - Add null-safe handling for categories array to prevent PSQLException - Handle cases where PostgreSQL returns null arrays gracefully - Fix POM version mismatch (1.2.35 -> 1.2.36-SNAPSHOT) - Resolves DataIntegrityViolationException: No results were returned by the query The original error occurred when PostgreSQL JDBC driver couldn't handle null array types in the categories column. This fix adds proper null checks before attempting to extract array contents. --- adapters/jdbc/pom.xml | 2 +- .../org/atomhopper/jdbc/adapter/JdbcFeedSource.java | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/adapters/jdbc/pom.xml b/adapters/jdbc/pom.xml index 3c00eb0e..d39835d8 100644 --- a/adapters/jdbc/pom.xml +++ b/adapters/jdbc/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36-SNAPSHOT ./../../pom.xml diff --git a/adapters/jdbc/src/main/java/org/atomhopper/jdbc/adapter/JdbcFeedSource.java b/adapters/jdbc/src/main/java/org/atomhopper/jdbc/adapter/JdbcFeedSource.java index 5ec48eb2..2f2af058 100644 --- a/adapters/jdbc/src/main/java/org/atomhopper/jdbc/adapter/JdbcFeedSource.java +++ b/adapters/jdbc/src/main/java/org/atomhopper/jdbc/adapter/JdbcFeedSource.java @@ -28,6 +28,8 @@ import org.atomhopper.util.uri.template.URITemplate; import org.joda.time.DateTime; import org.joda.time.format.DateTimeFormatter; + +import java.sql.Array; import org.joda.time.format.ISODateTimeFormat; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -826,7 +828,14 @@ public Object extractData( ResultSet rs ) throws SQLException, DataAccessExcepti entry.setEntryId(rs.getString("entryid")); - List cats = new ArrayList( Arrays.asList( (String[])rs.getArray( "categories" ).getArray() ) ); + List cats = new ArrayList(); + Array categoriesArray = rs.getArray("categories"); + if (categoriesArray != null) { + String[] categoryStrings = (String[]) categoriesArray.getArray(); + if (categoryStrings != null) { + cats.addAll(Arrays.asList(categoryStrings)); + } + } for( String column : mapColumn.keySet() ) { From 3e528751504d9fca6d313cdbe86d36e56ccf4bd6 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Mon, 1 Sep 2025 21:33:24 +0530 Subject: [PATCH 02/14] Release version 1.2.36 - Update all module versions from 1.2.35/1.2.36-SNAPSHOT to 1.2.36 - Includes PostgreSQL array handling fix for production deployment - Ready for artifact release to GitHub Packages --- adapters/dynamoDB_adapters/pom.xml | 2 +- adapters/hibernate/pom.xml | 2 +- adapters/jdbc/pom.xml | 2 +- adapters/migration/pom.xml | 2 +- adapters/mongodb/pom.xml | 2 +- adapters/postgres-adapter/pom.xml | 2 +- atomhopper/pom.xml | 6 +++--- documentation/pom.xml | 2 +- hopper/pom.xml | 2 +- pom.xml | 2 +- server/pom.xml | 2 +- test-suite/pom.xml | 2 +- test-util/pom.xml | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/adapters/dynamoDB_adapters/pom.xml b/adapters/dynamoDB_adapters/pom.xml index af7b89b4..c0d9fe80 100644 --- a/adapters/dynamoDB_adapters/pom.xml +++ b/adapters/dynamoDB_adapters/pom.xml @@ -5,7 +5,7 @@ parent org.atomhopper - 1.2.35-SNAPSHOT + 1.2.36 ../../pom.xml 4.0.0 diff --git a/adapters/hibernate/pom.xml b/adapters/hibernate/pom.xml index eaf139ca..8cbf363a 100644 --- a/adapters/hibernate/pom.xml +++ b/adapters/hibernate/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 ./../../pom.xml diff --git a/adapters/jdbc/pom.xml b/adapters/jdbc/pom.xml index d39835d8..6c1bae24 100644 --- a/adapters/jdbc/pom.xml +++ b/adapters/jdbc/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36-SNAPSHOT + 1.2.36 ./../../pom.xml diff --git a/adapters/migration/pom.xml b/adapters/migration/pom.xml index 83e2f4fd..37c3696f 100644 --- a/adapters/migration/pom.xml +++ b/adapters/migration/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 ./../../pom.xml diff --git a/adapters/mongodb/pom.xml b/adapters/mongodb/pom.xml index 35436835..c2bcdd39 100644 --- a/adapters/mongodb/pom.xml +++ b/adapters/mongodb/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 ./../../pom.xml diff --git a/adapters/postgres-adapter/pom.xml b/adapters/postgres-adapter/pom.xml index a62cf3d2..58904bce 100644 --- a/adapters/postgres-adapter/pom.xml +++ b/adapters/postgres-adapter/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 ./../../pom.xml diff --git a/atomhopper/pom.xml b/atomhopper/pom.xml index 747ae115..94e1d46d 100644 --- a/atomhopper/pom.xml +++ b/atomhopper/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 org.atomhopper @@ -65,7 +65,7 @@ org.atomhopper.adapter dynamoDB_adapters - 1.2.35-SNAPSHOT + 1.2.36 @@ -107,7 +107,7 @@ org.atomhopper.adapter dynamoDB_adapters - 1.2.35-SNAPSHOT + 1.2.36 diff --git a/documentation/pom.xml b/documentation/pom.xml index 9a9da839..be5fdcbc 100644 --- a/documentation/pom.xml +++ b/documentation/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 org.atomhopper diff --git a/hopper/pom.xml b/hopper/pom.xml index 5a09096c..650b7ed9 100644 --- a/hopper/pom.xml +++ b/hopper/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36-SNAPSHOT + 1.2.36 org.atomhopper diff --git a/pom.xml b/pom.xml index a5bb315e..c5602199 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent pom - 1.2.36-SNAPSHOT + 1.2.36 ATOM Hopper - ATOMpub Server Collection http://atomhopper.org/ diff --git a/server/pom.xml b/server/pom.xml index 5d19438e..51acc042 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 org.atomhopper diff --git a/test-suite/pom.xml b/test-suite/pom.xml index 0d4af7d1..c3a238a2 100644 --- a/test-suite/pom.xml +++ b/test-suite/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 org.atomhopper diff --git a/test-util/pom.xml b/test-util/pom.xml index 4526ead6..411c6438 100644 --- a/test-util/pom.xml +++ b/test-util/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.35-SNAPSHOT + 1.2.36 org.atomhopper From 0f4d5968b71a891174c2c63dcf730ab2ed5b118c Mon Sep 17 00:00:00 2001 From: Srihari K Date: Mon, 1 Sep 2025 21:37:36 +0530 Subject: [PATCH 03/14] Release version 1.2.35 - Update all module versions to 1.2.35 (following parent-1.2.34) - Includes PostgreSQL array handling fix for production deployment - Ready for artifact release to GitHub Packages --- adapters/dynamoDB_adapters/pom.xml | 2 +- adapters/hibernate/pom.xml | 2 +- adapters/jdbc/pom.xml | 2 +- adapters/migration/pom.xml | 2 +- adapters/mongodb/pom.xml | 2 +- adapters/postgres-adapter/pom.xml | 2 +- atomhopper/pom.xml | 6 +++--- documentation/pom.xml | 2 +- hopper/pom.xml | 2 +- pom.xml | 2 +- server/pom.xml | 2 +- test-suite/pom.xml | 2 +- test-util/pom.xml | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/adapters/dynamoDB_adapters/pom.xml b/adapters/dynamoDB_adapters/pom.xml index c0d9fe80..8bd636f1 100644 --- a/adapters/dynamoDB_adapters/pom.xml +++ b/adapters/dynamoDB_adapters/pom.xml @@ -5,7 +5,7 @@ parent org.atomhopper - 1.2.36 + 1.2.35 ../../pom.xml 4.0.0 diff --git a/adapters/hibernate/pom.xml b/adapters/hibernate/pom.xml index 8cbf363a..c272806e 100644 --- a/adapters/hibernate/pom.xml +++ b/adapters/hibernate/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 ./../../pom.xml diff --git a/adapters/jdbc/pom.xml b/adapters/jdbc/pom.xml index 6c1bae24..dc04674b 100644 --- a/adapters/jdbc/pom.xml +++ b/adapters/jdbc/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 ./../../pom.xml diff --git a/adapters/migration/pom.xml b/adapters/migration/pom.xml index 37c3696f..291e1350 100644 --- a/adapters/migration/pom.xml +++ b/adapters/migration/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 ./../../pom.xml diff --git a/adapters/mongodb/pom.xml b/adapters/mongodb/pom.xml index c2bcdd39..2eebe3f8 100644 --- a/adapters/mongodb/pom.xml +++ b/adapters/mongodb/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 ./../../pom.xml diff --git a/adapters/postgres-adapter/pom.xml b/adapters/postgres-adapter/pom.xml index 58904bce..b36a0f78 100644 --- a/adapters/postgres-adapter/pom.xml +++ b/adapters/postgres-adapter/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 ./../../pom.xml diff --git a/atomhopper/pom.xml b/atomhopper/pom.xml index 94e1d46d..b7ce1e5b 100644 --- a/atomhopper/pom.xml +++ b/atomhopper/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 org.atomhopper @@ -65,7 +65,7 @@ org.atomhopper.adapter dynamoDB_adapters - 1.2.36 + 1.2.35 @@ -107,7 +107,7 @@ org.atomhopper.adapter dynamoDB_adapters - 1.2.36 + 1.2.35 diff --git a/documentation/pom.xml b/documentation/pom.xml index be5fdcbc..863fd974 100644 --- a/documentation/pom.xml +++ b/documentation/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 org.atomhopper diff --git a/hopper/pom.xml b/hopper/pom.xml index 650b7ed9..3b6b754b 100644 --- a/hopper/pom.xml +++ b/hopper/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 org.atomhopper diff --git a/pom.xml b/pom.xml index c5602199..56d589a3 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent pom - 1.2.36 + 1.2.35 ATOM Hopper - ATOMpub Server Collection http://atomhopper.org/ diff --git a/server/pom.xml b/server/pom.xml index 51acc042..87d4e58e 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 org.atomhopper diff --git a/test-suite/pom.xml b/test-suite/pom.xml index c3a238a2..224b6a76 100644 --- a/test-suite/pom.xml +++ b/test-suite/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 org.atomhopper diff --git a/test-util/pom.xml b/test-util/pom.xml index 411c6438..65fb42eb 100644 --- a/test-util/pom.xml +++ b/test-util/pom.xml @@ -5,7 +5,7 @@ org.atomhopper parent - 1.2.36 + 1.2.35 org.atomhopper From 248b380c34d8892ae1448bdc25d9c4cb74c4a73e Mon Sep 17 00:00:00 2001 From: Srihari K Date: Mon, 1 Sep 2025 22:00:48 +0530 Subject: [PATCH 04/14] Fix GitHub Packages deployment configuration - Fix GitHub Packages repository URLs (remove .git suffix) - Remove duplicate dynamoDB_adapters dependency from atomhopper/pom.xml - Update snapshot repository ID to match main repository for consistency --- atomhopper/pom.xml | 6 +----- pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/atomhopper/pom.xml b/atomhopper/pom.xml index b7ce1e5b..4e2c06b0 100644 --- a/atomhopper/pom.xml +++ b/atomhopper/pom.xml @@ -104,11 +104,7 @@ 4.2.5.RELEASE - - org.atomhopper.adapter - dynamoDB_adapters - 1.2.35 - + jakarta.xml.bind diff --git a/pom.xml b/pom.xml index 56d589a3..318fea7f 100644 --- a/pom.xml +++ b/pom.xml @@ -398,12 +398,12 @@ github GitHub Packages - https://maven.pkg.github.com/rackerlabs/atom-hopper.git + https://maven.pkg.github.com/rackerlabs/atom-hopper - snapshots + github GitHub Packages - https://maven.pkg.github.com/rackerlabs/atom-hopper.git + https://maven.pkg.github.com/rackerlabs/atom-hopper From 38b6ecb41796e0e3411c78e5592d2b368fcc2fb3 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 15:13:41 +0530 Subject: [PATCH 05/14] CF-4251:docker image for postgreSQL array fix --- .github/workflows/Docker.build.yaml | 51 +++++++++++++++++++++++++++++ docker/Dockerfile | 24 +++++++++++--- docker/README.md | 40 ++++++++++++++++++---- 3 files changed, 103 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/Docker.build.yaml diff --git a/.github/workflows/Docker.build.yaml b/.github/workflows/Docker.build.yaml new file mode 100644 index 00000000..a60f6b05 --- /dev/null +++ b/.github/workflows/Docker.build.yaml @@ -0,0 +1,51 @@ +name: Docker Build and Deploy + +on: + push: + branches: + - fix/postgresql-array-handling #branch name which is used for image building + +jobs: + build: + runs-on: self-hosted + permissions: + contents: read + packages: read + + env: + ECR_REPOSITORY: atomhopper + AWS_REGION: us-east-1 + + steps: + - name: checkout code + uses: actions/checkout@v3 + + - name: Set Short commit SHA as image tag + run: echo "IMAGE_TAG=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV + + - name: GitHub Packages login + run: | + echo "Logging into GitHub Container Registry..." + echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin + echo "Logging into GitHub Packages Maven registry..." + echo ${{ secrets.GITHUB_TOKEN }} | docker login maven.pkg.github.com -u ${{ github.actor }} --password-stdin + + - name: AWS ECR login + run: | + aws ecr get-login-password --region ${{ env.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com + - name: Build docker image + run: | + cd docker + echo "Building Docker image with GitHub authentication..." + docker build \ + --build-arg GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} \ + --build-arg GITHUB_ACTOR=${{ github.actor }} \ + --progress=plain \ + -t atomhopper:latest-alpine . + echo "Tagging images for ECR..." + docker tag atomhopper:latest-alpine ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} + docker tag atomhopper:latest-alpine ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:latest + - name: Push docker image to registry + run: | + docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} + docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:latest \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile index dfee6f62..de39e600 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,9 +3,19 @@ FROM tomcat:9.0.41-jdk8 as tomcat FROM adoptopenjdk/openjdk8:alpine-slim +# Build arguments for GitHub authentication +ARG GITHUB_TOKEN +ARG GITHUB_ACTOR + +# Validate that authentication arguments are provided +RUN if [ -z "$GITHUB_TOKEN" ] || [ -z "$GITHUB_ACTOR" ]; then \ + echo "ERROR: GITHUB_TOKEN and GITHUB_ACTOR build arguments are required for GitHub Packages authentication"; \ + exit 1; \ + fi + LABEL maintainer="AtomHopperTeam@rackspace.com" \ #Atom Hopper version - version="1.2.33" \ + version="1.2.35" \ description="Docker image for Atom Hopper" #The database type @@ -16,7 +26,7 @@ ENV DB_TYPE=H2 \ DB_PASSWORD= \ #Database Host:Port DB_HOST=h2 \ - AH_VERSION=1.2.33 \ + AH_VERSION=1.2.35 \ CATALINA_HOME=/opt/tomcat \ AH_HOME=/opt/atomhopper \ PATH=${PATH}:${CATALINA_HOME}/bin:${AH_HOME} @@ -28,14 +38,18 @@ WORKDIR ${AH_HOME} COPY --from=tomcat /usr/local/tomcat ${CATALINA_HOME} COPY start.sh . -RUN apk --no-cache add curl \ - && curl -o atomhopper.war https://maven.research.rackspacecloud.com/content/repositories/releases/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war \ +RUN apk --no-cache add curl unzip \ + && echo "Downloading AtomHopper ${AH_VERSION} from GitHub Packages..." \ + && curl -f -u ${GITHUB_ACTOR}:${GITHUB_TOKEN} -o atomhopper.war \ + "https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ + && echo "Download completed, extracting configuration files..." \ && unzip atomhopper.war META-INF/application-context.xml META-INF/template-logback.xml WEB-INF/classes/META-INF/atom-server.cfg.xml -d . \ && mv META-INF/application-context.xml WEB-INF/classes/META-INF/atom-server.cfg.xml /etc/atomhopper/ \ && mv META-INF/template-logback.xml /etc/atomhopper/logback.xml \ && mv atomhopper.war ${CATALINA_HOME}/webapps/ROOT.war \ && rm -rf META-INF WEB-INF \ - && chmod +x ${AH_HOME}/start.sh + && chmod +x ${AH_HOME}/start.sh \ + && echo "AtomHopper ${AH_VERSION} setup completed successfully" EXPOSE 8080 diff --git a/docker/README.md b/docker/README.md index 52746488..cef88ac8 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,10 +1,36 @@ -# docker build image and run the conatiner -Your current direcotry should be pointing to ***atom-hopper/docker***. -Run the following command to build an image. -``` -$docker build -t atomhopper:latest-alpine . +# docker build image and run the container + +## Building the Docker Image + +Your current directory should be pointing to ***atom-hopper/docker***. + +### Prerequisites +The Docker build now downloads AtomHopper from GitHub Packages, which requires authentication. You need: +- A GitHub Personal Access Token with `packages:read` permission +- Your GitHub username + +### Build Command +Run the following command to build an image with GitHub authentication: +```bash +docker build \ + --build-arg GITHUB_TOKEN=your_github_token \ + --build-arg GITHUB_ACTOR=your_github_username \ + -t atomhopper:latest-alpine . ``` -You can use the following command to run a container by provinding the appropriate values to the variables. + +### Alternative: Using Environment Variables +You can also set environment variables and build: +```bash +export GITHUB_TOKEN=your_github_token +export GITHUB_ACTOR=your_github_username +docker build \ + --build-arg GITHUB_TOKEN=$GITHUB_TOKEN \ + --build-arg GITHUB_ACTOR=$GITHUB_ACTOR \ + -t atomhopper:latest-alpine . +``` +## Running the Container + +You can use the following command to run a container by providing the appropriate values to the variables. ``` $docker run -d --name [Conatiner_Name] -p 8080:8080 -e DB_TYPE=[Database_Type (PostgreSQL, MySQL)] -e DB_USER=[Database_Username] -e DB_PASSWORD=[Database_Password] -e DB_HOST=[IP:PORT] atomhopper:latest-alpine ``` @@ -22,7 +48,7 @@ Following environment variables are set by default JAVA_HOME "/opt/java/openjdk8/jre" CATALINA_HOME "/opt/tomcat" AH_HOME "/opt/atomhopper" -AH_VERSION "1.2.33" +AH_VERSION "1.2.35" ``` For specific databse configuration of your choice (PostgreSQL,MySQL) provide values for the variables DB_TYPE, DB_USER, DB_PASSWORD and DB_HOST From 77b8584b6ce309392e49649a113a63879f9b7034 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 15:42:00 +0530 Subject: [PATCH 06/14] Update Docker build workflow and configuration - Change from self-hosted to ubuntu-latest runner - Add GitHub Packages authentication for Docker build - Update Dockerfile to use GitHub Packages with authentication - Add AWS credentials configuration step - Update version to 1.2.35 in Docker configuration - Add comprehensive error handling and logging --- .github/workflows/Docker.build.yaml | 9 +- adapters/dynamoDB_adapters/logs/hopper.log | 36 + adapters/hibernate/logs/hopper.log | 2517 ++++++++++++++++++++ adapters/jdbc/logs/hopper.log | 31 + adapters/migration/logs/hopper.log | 2 + adapters/mongodb/logs/hopper.log | 21 + adapters/postgres-adapter/logs/hopper.log | 22 + hopper/logs/hopper.log | 792 ++++++ 8 files changed, 3429 insertions(+), 1 deletion(-) create mode 100644 adapters/dynamoDB_adapters/logs/hopper.log create mode 100644 adapters/hibernate/logs/hopper.log create mode 100644 adapters/jdbc/logs/hopper.log create mode 100644 adapters/migration/logs/hopper.log create mode 100644 adapters/mongodb/logs/hopper.log create mode 100644 adapters/postgres-adapter/logs/hopper.log create mode 100644 hopper/logs/hopper.log diff --git a/.github/workflows/Docker.build.yaml b/.github/workflows/Docker.build.yaml index a60f6b05..2621adc9 100644 --- a/.github/workflows/Docker.build.yaml +++ b/.github/workflows/Docker.build.yaml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: self-hosted + runs-on: ubuntu-latest permissions: contents: read packages: read @@ -23,6 +23,13 @@ jobs: - name: Set Short commit SHA as image tag run: echo "IMAGE_TAG=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ env.AWS_REGION }} + - name: GitHub Packages login run: | echo "Logging into GitHub Container Registry..." diff --git a/adapters/dynamoDB_adapters/logs/hopper.log b/adapters/dynamoDB_adapters/logs/hopper.log new file mode 100644 index 00000000..684a70e1 --- /dev/null +++ b/adapters/dynamoDB_adapters/logs/hopper.log @@ -0,0 +1,36 @@ +2025-09-02 14:30:12.157 [main] DEBUG com.amazonaws.AmazonWebServiceClient - Internal logging successfully configured to commons logger: true +2025-09-02 14:30:12.187 [main] DEBUG com.amazonaws.metrics.AwsSdkMetrics - Admin mbean registered under com.amazonaws.management:type=AwsSdkMetrics +2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - Filter String finding +2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - searchString: +2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - conditionExpression: feed = :feed +2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - filterExpression: null +2025-09-02 14:30:12.352 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - valueMap: {:feed=namespace/feed} +2025-09-02 14:30:12.352 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - pageSize: 25 +2025-09-02 14:30:12.352 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - else me gaya +2025-09-02 14:30:12.353 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - before query +2025-09-02 14:30:12.353 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - after query +2025-09-02 14:30:12.353 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - feedPage Size: 0 +2025-09-02 14:30:12.354 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - hydrateFeed START +2025-09-02 14:30:12.371 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - addFeedSelfLink START +2025-09-02 14:30:12.374 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - addFeedSelfLink END +2025-09-02 14:30:12.376 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - dddddddddd +2025-09-02 14:30:12.376 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - hydrateFeed END +2025-09-02 14:30:12.384 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry START +2025-09-02 14:30:12.399 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry END +2025-09-02 14:30:12.405 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry START +2025-09-02 14:30:12.405 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry END +2025-09-02 14:30:12.466 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:12.466 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null +2025-09-02 14:30:12.472 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: + Title: WoodSToX XML-processor + Symbolic name: null + Vendor: woodstox.codehaus.org + Version: 3.2.6 +2025-09-02 14:30:12.472 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox +2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT +2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 +2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] +2025-09-02 14:30:12.478 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper +2025-09-02 14:30:12.479 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush +2025-09-02 14:30:12.479 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close diff --git a/adapters/hibernate/logs/hopper.log b/adapters/hibernate/logs/hopper.log new file mode 100644 index 00000000..e21dc4b3 --- /dev/null +++ b/adapters/hibernate/logs/hopper.log @@ -0,0 +1,2517 @@ +2025-09-02 14:29:57.628 [main] DEBUG org.jboss.logging - Logging Provider: org.jboss.logging.Slf4jLoggerProvider +2025-09-02 14:29:57.634 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e +2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 +2025-09-02 14:29:57.636 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 +2025-09-02 14:29:57.636 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:57.636 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:57.638 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:57.638 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:57.639 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:57.644 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:57.644 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 +2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 +2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 +2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 +2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b +2025-09-02 14:29:57.651 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:57.652 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:57.652 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 +2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 +2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@14ec4505 +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@53ca01a2 +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@358c99f5 +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@3ee0fea4 +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@48524010 +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4b168fa9 +2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@1a84f40f +2025-09-02 14:29:57.655 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@23282c25 +2025-09-02 14:29:57.661 [main] INFO o.h.annotations.common.Version - HCANN000001: Hibernate Commons Annotations {4.0.1.Final} +2025-09-02 14:29:57.663 [main] INFO org.hibernate.Version - HHH000412: Hibernate Core {4.1.3.Final} +2025-09-02 14:29:57.663 [main] INFO org.hibernate.cfg.Environment - HHH000206: hibernate.properties not found +2025-09-02 14:29:57.664 [main] INFO org.hibernate.cfg.Environment - HHH000021: Bytecode provider name : javassist +2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] +2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] +2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] +2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] +2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] +2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] +2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] +2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] +2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] +2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] +2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] +2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] +2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] +2025-09-02 14:29:57.675 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. +2025-09-02 14:29:57.682 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} +2025-09-02 14:29:57.691 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:57.691 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:57.692 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:57.699 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:57.699 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:57.700 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed +2025-09-02 14:29:57.701 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds +2025-09-02 14:29:57.710 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.711 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false +2025-09-02 14:29:57.711 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name +2025-09-02 14:29:57.712 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name +2025-09-02 14:29:57.716 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:57.716 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.716 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.719 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.719 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.719 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:57.720 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:57.720 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:57.720 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:57.721 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries +2025-09-02 14:29:57.721 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.721 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false +2025-09-02 14:29:57.721 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId +2025-09-02 14:29:57.721 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId +2025-09-02 14:29:57.721 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:57.722 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:57.722 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:57.722 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry +2025-09-02 14:29:57.722 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries +2025-09-02 14:29:57.727 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.728 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false +2025-09-02 14:29:57.728 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId +2025-09-02 14:29:57.728 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId +2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} +2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} +2025-09-02 14:29:57.729 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:57.729 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories +2025-09-02 14:29:57.729 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.729 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false +2025-09-02 14:29:57.730 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate +2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate +2025-09-02 14:29:57.730 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false +2025-09-02 14:29:57.730 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated +2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated +2025-09-02 14:29:57.730 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false +2025-09-02 14:29:57.731 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody +2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody +2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} +2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed +2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory +2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories +2025-09-02 14:29:57.732 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.732 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false +2025-09-02 14:29:57.732 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term +2025-09-02 14:29:57.732 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term +2025-09-02 14:29:57.732 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:57.733 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:57.733 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries +2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name +2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId +2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId +2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate +2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated +2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody +2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term +2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:57.735 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:57.735 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:57.735 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:57.735 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:57.735 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:57.736 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category +2025-09-02 14:29:57.736 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:57.736 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key +2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries +2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed +2025-09-02 14:29:57.737 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:57.737 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:57.737 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId +2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:57.740 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000402: Using Hibernate built-in connection pool (not for production use!) +2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000115: Hibernate connection pool size: 20 +2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000006: Autocommit mode: false +2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:WhenOperatingInParallel] +2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000046: Connection properties: {user=sa, password=} +2025-09-02 14:29:57.747 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection +2025-09-02 14:29:57.841 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenOperatingInParallel, Isolation Level: 2 +2025-09-02 14:29:57.842 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Database -> + name : H2 + version : 2.1.210 (2022-01-17) + major : 2 + minor : 1 +2025-09-02 14:29:57.842 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Driver -> + name : H2 JDBC Driver + version : 2.1.210 (2022-01-17) + major : 2 + minor : 1 +2025-09-02 14:29:57.842 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - JDBC version : 4.2 +2025-09-02 14:29:57.851 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch size: 15 +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled +2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto +2025-09-02 14:29:57.884 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) +2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 +2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled +2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled +2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled +2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory +2025-09-02 14:29:57.886 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled +2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE +2025-09-02 14:29:57.890 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory +2025-09-02 14:29:57.892 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} +2025-09-02 14:29:57.892 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= +, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.connection.url=jdbc:h2:mem:WhenOperatingInParallel, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} +2025-09-02 14:29:57.896 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.896 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.896 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? +2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_1_, persistede_.DateLastUpdated as DateLast3_1_, persistede_.EntryBody as EntryBody1_, persistede_.Feed as Feed1_ from Entries persistede_ where persistede_.EntryID=? +2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? +2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? +2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? +2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) +2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null +2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? +2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? +2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? +2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? +2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? +2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? +2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? +2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? +2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID1_1_, persistede0_.CreationDate as Creation2_1_1_, persistede0_.DateLastUpdated as DateLast3_1_1_, persistede0_.EntryBody as EntryBody1_1_, persistede0_.Feed as Feed1_1_, categories1_.entryId as entryId1_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term2_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID1_1_, persistede0_.CreationDate as Creation2_1_1_, persistede0_.DateLastUpdated as DateLast3_1_1_, persistede0_.EntryBody as EntryBody1_1_, persistede0_.Feed as Feed1_1_, categories1_.entryId as entryId1_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term2_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:57.945 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category2_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID1_0_, persistede1_.CreationDate as Creation2_1_0_, persistede1_.DateLastUpdated as DateLast3_1_0_, persistede1_.EntryBody as EntryBody1_0_, persistede1_.Feed as Feed1_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? +2025-09-02 14:29:57.945 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId1_1_, categories0_.category as category1_, persistedc1_.Term as Term2_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:57.946 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed0_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID1_0_, entries0_.CreationDate as Creation2_1_0_, entries0_.DateLastUpdated as DateLast3_1_0_, entries0_.EntryBody as EntryBody1_0_, entries0_.Feed as Feed1_0_ from Entries entries0_ where entries0_.Feed=? +2025-09-02 14:29:57.947 [main] DEBUG o.h.internal.SessionFactoryRegistry - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@55562aa9 +2025-09-02 14:29:57.948 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: c1cc4c4e-d59b-4ae2-944b-e4ae513fa06b () +2025-09-02 14:29:57.948 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured +2025-09-02 14:29:57.948 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory +2025-09-02 14:29:57.949 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update +2025-09-02 14:29:57.949 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata +2025-09-02 14:29:57.958 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000396: Updating schema +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:57.958 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories +2025-09-02 14:29:57.958 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.958 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences +2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries +2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds +2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories +2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences +2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries +2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds +2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:57.959 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Categories (Term varchar(255) not null, primary key (Term)) +2025-09-02 14:29:57.962 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table CategoryEntryReferences (entryId varchar(255) not null, category varchar(255) not null, primary key (entryId, category)) +2025-09-02 14:29:57.963 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Entries (EntryID varchar(255) not null, CreationDate timestamp not null, DateLastUpdated timestamp not null, EntryBody clob, Feed varchar(255), primary key (EntryID)) +2025-09-02 14:29:57.963 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Feeds (Name varchar(255) not null, FeedID varchar(255), primary key (Name)) +2025-09-02 14:29:57.964 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CA3D8A01E foreign key (category) references Categories +2025-09-02 14:29:57.967 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CFBC7269D foreign key (entryId) references Entries +2025-09-02 14:29:57.968 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table Entries add constraint FK45B1C704D6F525E foreign key (Feed) references Feeds +2025-09-02 14:29:57.970 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000232: Schema update complete +2025-09-02 14:29:57.970 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries +2025-09-02 14:29:57.970 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries +2025-09-02 14:29:57.971 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] +2025-09-02 14:29:57.973 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803597973 +2025-09-02 14:29:57.973 [Thread-2] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803597973 +2025-09-02 14:29:57.984 [Thread-2] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035979 +2025-09-02 14:29:57.984 [Thread-3] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035979 +2025-09-02 14:29:57.984 [Thread-2] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:57.984 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:57.984 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:57.984 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:57.984 [Thread-3] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection +2025-09-02 14:29:57.984 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:57.985 [Thread-2] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:57.985 [Thread-3] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenOperatingInParallel, Isolation Level: 2 +2025-09-02 14:29:57.985 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:57.985 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.019 [Thread-3] DEBUG org.hibernate.SQL - select this_.Name as Name0_0_, this_.FeedID as FeedID0_0_ from Feeds this_ where this_.Name = ? +2025-09-02 14:29:58.019 [Thread-2] DEBUG org.hibernate.SQL - select this_.Name as Name0_0_, this_.FeedID as FeedID0_0_ from Feeds this_ where this_.Name = ? +2025-09-02 14:29:58.046 [Thread-3] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.046 [Thread-2] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.049 [Thread-3] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.049 [Thread-2] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.050 [Thread-2] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feed1, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.050 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feed2, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.055 [Thread-2] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entry1, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.055 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entry2, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.055 [Thread-3] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.055 [Thread-2] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.055 [Thread-2] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.055 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.055 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.055 [Thread-2] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.056 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.056 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.056 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.056 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feed2], was: [] (initialized) +2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feed1], was: [] (initialized) +2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry2], was: [] (initialized) +2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry1], was: [] (initialized) +2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat], was: [] (initialized) +2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat], was: [] (initialized) +2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 insertions, 0 updates, 0 deletions to 3 objects +2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 insertions, 0 updates, 0 deletions to 3 objects +2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 0 removals to 3 collections +2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 0 removals to 3 collections +2025-09-02 14:29:58.058 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.058 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.059 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feed1, dateLastUpdated=Tue Sep 02 14:29:57 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat], creationDate=Tue Sep 02 14:29:57 IST 2025, entryId=entry1} +2025-09-02 14:29:58.059 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entry1], feedId=feed1, name=feed1} +2025-09-02 14:29:58.059 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat, feedEntries=[]} +2025-09-02 14:29:58.060 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feed2, dateLastUpdated=Tue Sep 02 14:29:57 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat], creationDate=Tue Sep 02 14:29:57 IST 2025, entryId=entry2} +2025-09-02 14:29:58.060 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entry2], feedId=feed2, name=feed2} +2025-09-02 14:29:58.060 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat, feedEntries=[]} +2025-09-02 14:29:58.061 [Thread-3] DEBUG o.h.service.spi.ServiceBinding - Overriding existing service binding [org.hibernate.engine.jdbc.batch.spi.BatchBuilder] +2025-09-02 14:29:58.061 [Thread-2] DEBUG o.h.service.spi.ServiceBinding - Overriding existing service binding [org.hibernate.service.jmx.spi.JmxService] +2025-09-02 14:29:58.061 [Thread-3] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.061 [Thread-2] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.062 [Thread-3] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.062 [Thread-2] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.063 [Thread-2] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.063 [Thread-3] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.063 [Thread-2] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry1] +2025-09-02 14:29:58.064 [Thread-2] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.064 [Thread-2] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted +2025-09-02 14:29:58.064 [Thread-2] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.065 [Thread-2] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 92 +2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.065 [Thread-3] DEBUG o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 1 */ 'cat' )"; SQL statement: +insert into Categories (Term) values (?) [23505-210] [n/a] +org.h2.jdbc.JdbcSQLIntegrityConstraintViolationException: Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 1 */ 'cat' )"; SQL statement: +insert into Categories (Term) values (?) [23505-210] + at org.h2.message.DbException.getJdbcSQLException(DbException.java:527) + at org.h2.message.DbException.getJdbcSQLException(DbException.java:496) + at org.h2.message.DbException.get(DbException.java:227) + at org.h2.message.DbException.get(DbException.java:203) + at org.h2.index.Index.getDuplicateKeyException(Index.java:525) + at org.h2.mvstore.db.MVSecondaryIndex.checkUnique(MVSecondaryIndex.java:223) + at org.h2.mvstore.db.MVSecondaryIndex.add(MVSecondaryIndex.java:184) + at org.h2.mvstore.db.MVTable.addRow(MVTable.java:519) + at org.h2.command.dml.Insert.insertRows(Insert.java:174) + at org.h2.command.dml.Insert.update(Insert.java:135) + at org.h2.command.dml.DataChangeStatement.update(DataChangeStatement.java:61) + at org.h2.command.CommandContainer.update(CommandContainer.java:174) + at org.h2.command.Command.executeUpdate(Command.java:252) + at org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:209) + at org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:169) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.hibernate.engine.jdbc.internal.proxy.AbstractStatementProxyHandler.continueInvocation(AbstractStatementProxyHandler.java:122) + at org.hibernate.engine.jdbc.internal.proxy.AbstractProxyHandler.invoke(AbstractProxyHandler.java:81) + at com.sun.proxy.$Proxy22.executeUpdate(Unknown Source) + at org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch.addToBatch(NonBatchingBatch.java:56) + at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2859) + at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:3300) + at org.hibernate.action.internal.EntityInsertAction.execute(EntityInsertAction.java:88) + at org.hibernate.engine.spi.ActionQueue.execute(ActionQueue.java:362) + at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:354) + at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:275) + at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:326) + at org.hibernate.event.internal.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:52) + at org.hibernate.internal.SessionImpl.flush(SessionImpl.java:1214) + at org.hibernate.internal.SessionImpl.managedFlush(SessionImpl.java:403) + at org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.beforeTransactionCommit(JdbcTransaction.java:101) + at org.hibernate.engine.transaction.spi.AbstractTransactionImpl.commit(AbstractTransactionImpl.java:175) + at org.atomhopper.hibernate.HibernateFeedRepository.performSimpleAction(HibernateFeedRepository.java:52) + at org.atomhopper.hibernate.HibernateFeedRepository.saveEntry(HibernateFeedRepository.java:248) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$2.run(HibernateFeedRepositoryTest.java:313) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$2.run(HibernateFeedRepositoryTest.java:297) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$Runner$1.run(HibernateFeedRepositoryTest.java:250) + at java.lang.Thread.run(Thread.java:750) +2025-09-02 14:29:58.065 [Thread-3] WARN o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 23505, SQLState: 23505 +2025-09-02 14:29:58.065 [Thread-3] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 1 */ 'cat' )"; SQL statement: +insert into Categories (Term) values (?) [23505-210] +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - rolling back +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - rolled JDBC Connection +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 93 +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.066 [Thread-3] INFO o.h.e.j.b.internal.AbstractBatchImpl - HHH000010: On release of batch it still contained JDBC statements +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598066 +2025-09-02 14:29:58.066 [Thread-3] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.066 [Thread-3] DEBUG org.hibernate.SQL - select this_.Name as Name0_0_, this_.FeedID as FeedID0_0_ from Feeds this_ where this_.Name = ? +2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.067 [Thread-3] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.067 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feed2, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.067 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entry2, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.067 [Thread-3] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feed2], was: [] (initialized) +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry2], was: [] (initialized) +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat], was: [] (initialized) +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 2 insertions, 0 updates, 0 deletions to 3 objects +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 1 removals to 3 collections +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feed2, dateLastUpdated=Tue Sep 02 14:29:57 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat], creationDate=Tue Sep 02 14:29:57 IST 2025, entryId=entry2} +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entry2], feedId=feed2, name=feed2} +2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat, feedEntries=[]} +2025-09-02 14:29:58.069 [Thread-3] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.069 [Thread-3] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.070 [Thread-3] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry2] +2025-09-02 14:29:58.070 [Thread-3] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.070 [Thread-3] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted +2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.071 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 5 +2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.073 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598073 +2025-09-02 14:29:58.073 [Thread-4] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598073 +2025-09-02 14:29:58.073 [Thread-5] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 +2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.073 [Thread-4] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 +2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.074 [Thread-5] DEBUG org.hibernate.SQL - select this_.Term as Term2_0_ from Categories this_ where this_.Term = ? +2025-09-02 14:29:58.074 [Thread-4] DEBUG org.hibernate.SQL - select this_.Term as Term2_0_ from Categories this_ where this_.Term = ? +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: update, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: update, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update], was: [] (initialized) +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update], was: [] (initialized) +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 insertions, 0 updates, 0 deletions to 1 objects +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 insertions, 0 updates, 0 deletions to 1 objects +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 (re)creations, 0 updates, 0 removals to 1 collections +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 (re)creations, 0 updates, 0 removals to 1 collections +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=update, feedEntries=[]} +2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=update, feedEntries=[]} +2025-09-02 14:29:58.074 [Thread-5] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.074 [Thread-4] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.075 [Thread-4] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 2 +2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 9 */ 'update' )"; SQL statement: +insert into Categories (Term) values (?) [23505-210] [n/a] +org.h2.jdbc.JdbcSQLIntegrityConstraintViolationException: Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 9 */ 'update' )"; SQL statement: +insert into Categories (Term) values (?) [23505-210] + at org.h2.message.DbException.getJdbcSQLException(DbException.java:527) + at org.h2.message.DbException.getJdbcSQLException(DbException.java:496) + at org.h2.message.DbException.get(DbException.java:227) + at org.h2.message.DbException.get(DbException.java:203) + at org.h2.index.Index.getDuplicateKeyException(Index.java:525) + at org.h2.mvstore.db.MVSecondaryIndex.checkUnique(MVSecondaryIndex.java:223) + at org.h2.mvstore.db.MVSecondaryIndex.add(MVSecondaryIndex.java:184) + at org.h2.mvstore.db.MVTable.addRow(MVTable.java:519) + at org.h2.command.dml.Insert.insertRows(Insert.java:174) + at org.h2.command.dml.Insert.update(Insert.java:135) + at org.h2.command.dml.DataChangeStatement.update(DataChangeStatement.java:61) + at org.h2.command.CommandContainer.update(CommandContainer.java:174) + at org.h2.command.Command.executeUpdate(Command.java:252) + at org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:209) + at org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:169) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.hibernate.engine.jdbc.internal.proxy.AbstractStatementProxyHandler.continueInvocation(AbstractStatementProxyHandler.java:122) + at org.hibernate.engine.jdbc.internal.proxy.AbstractProxyHandler.invoke(AbstractProxyHandler.java:81) + at com.sun.proxy.$Proxy22.executeUpdate(Unknown Source) + at org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch.addToBatch(NonBatchingBatch.java:56) + at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2859) + at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:3300) + at org.hibernate.action.internal.EntityInsertAction.execute(EntityInsertAction.java:88) + at org.hibernate.engine.spi.ActionQueue.execute(ActionQueue.java:362) + at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:354) + at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:275) + at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:326) + at org.hibernate.event.internal.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:52) + at org.hibernate.internal.SessionImpl.flush(SessionImpl.java:1214) + at org.hibernate.internal.SessionImpl.managedFlush(SessionImpl.java:403) + at org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.beforeTransactionCommit(JdbcTransaction.java:101) + at org.hibernate.engine.transaction.spi.AbstractTransactionImpl.commit(AbstractTransactionImpl.java:175) + at org.atomhopper.hibernate.HibernateFeedRepository.performComplexAction(HibernateFeedRepository.java:79) + at org.atomhopper.hibernate.HibernateFeedRepository.updateCategories(HibernateFeedRepository.java:210) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$4.run(HibernateFeedRepositoryTest.java:352) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$4.run(HibernateFeedRepositoryTest.java:340) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$Runner$1.run(HibernateFeedRepositoryTest.java:250) + at java.lang.Thread.run(Thread.java:750) +2025-09-02 14:29:58.075 [Thread-5] WARN o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 23505, SQLState: 23505 +2025-09-02 14:29:58.075 [Thread-5] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 9 */ 'update' )"; SQL statement: +insert into Categories (Term) values (?) [23505-210] +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - rolling back +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - rolled JDBC Connection +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 2 +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.075 [Thread-5] INFO o.h.e.j.b.internal.AbstractBatchImpl - HHH000010: On release of batch it still contained JDBC statements +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598075 +2025-09-02 14:29:58.075 [Thread-5] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.075 [Thread-5] DEBUG org.hibernate.SQL - select this_.Term as Term2_0_ from Categories this_ where this_.Term = ? +2025-09-02 14:29:58.076 [Thread-5] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.076 [Thread-5] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#update] +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#update] +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#update] +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update] (uninitialized) +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 1 collections +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=update, feedEntries=} +2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.078 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 +2025-09-02 14:29:58.078 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.078 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.078 [Thread-5] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@f001896 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@13f17eb4 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@1d0d6318 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@4bc28c33 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@4409e975 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@5c153b9e +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@2a7686a7 +2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@758a34ce +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] +2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] +2025-09-02 14:29:58.080 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. +2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} +2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.080 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed +2025-09-02 14:29:58.080 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false +2025-09-02 14:29:58.081 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false +2025-09-02 14:29:58.081 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry +2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false +2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false +2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false +2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated +2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false +2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody +2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory +2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false +2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term +2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries +2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name +2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId +2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId +2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate +2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated +2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody +2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category +2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key +2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries +2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed +2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000402: Using Hibernate built-in connection pool (not for production use!) +2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000115: Hibernate connection pool size: 20 +2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000006: Autocommit mode: false +2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:WhenGettingCategories] +2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000046: Connection properties: {user=sa, password=} +2025-09-02 14:29:58.084 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection +2025-09-02 14:29:58.086 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenGettingCategories, Isolation Level: 2 +2025-09-02 14:29:58.086 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Database -> + name : H2 + version : 2.1.210 (2022-01-17) + major : 2 + minor : 1 +2025-09-02 14:29:58.086 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Driver -> + name : H2 JDBC Driver + version : 2.1.210 (2022-01-17) + major : 2 + minor : 1 +2025-09-02 14:29:58.086 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - JDBC version : 4.2 +2025-09-02 14:29:58.087 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch size: 15 +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto +2025-09-02 14:29:58.088 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory +2025-09-02 14:29:58.088 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled +2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE +2025-09-02 14:29:58.088 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory +2025-09-02 14:29:58.088 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} +2025-09-02 14:29:58.088 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= +, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.connection.url=jdbc:h2:mem:WhenGettingCategories, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} +2025-09-02 14:29:58.089 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.089 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.089 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_8_, persistede_.DateLastUpdated as DateLast3_8_, persistede_.EntryBody as EntryBody8_, persistede_.Feed as Feed8_ from Entries persistede_ where persistede_.EntryID=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID7_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? +2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? +2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID8_1_, persistede0_.CreationDate as Creation2_8_1_, persistede0_.DateLastUpdated as DateLast3_8_1_, persistede0_.EntryBody as EntryBody8_1_, persistede0_.Feed as Feed8_1_, categories1_.entryId as entryId8_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term9_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID8_1_, persistede0_.CreationDate as Creation2_8_1_, persistede0_.DateLastUpdated as DateLast3_8_1_, persistede0_.EntryBody as EntryBody8_1_, persistede0_.Feed as Feed8_1_, categories1_.entryId as entryId8_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term9_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.093 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category9_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID8_0_, persistede1_.CreationDate as Creation2_8_0_, persistede1_.DateLastUpdated as DateLast3_8_0_, persistede1_.EntryBody as EntryBody8_0_, persistede1_.Feed as Feed8_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? +2025-09-02 14:29:58.093 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId8_1_, categories0_.category as category1_, persistedc1_.Term as Term9_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:58.093 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed7_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID8_0_, entries0_.CreationDate as Creation2_8_0_, entries0_.DateLastUpdated as DateLast3_8_0_, entries0_.EntryBody as EntryBody8_0_, entries0_.Feed as Feed8_0_ from Entries entries0_ where entries0_.Feed=? +2025-09-02 14:29:58.093 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: c02cb2c3-1227-47c1-a6a1-5bdac83f3304 () +2025-09-02 14:29:58.093 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured +2025-09-02 14:29:58.093 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory +2025-09-02 14:29:58.093 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update +2025-09-02 14:29:58.093 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata +2025-09-02 14:29:58.094 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000396: Updating schema +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories +2025-09-02 14:29:58.094 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences +2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries +2025-09-02 14:29:58.094 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds +2025-09-02 14:29:58.094 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories +2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences +2025-09-02 14:29:58.095 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries +2025-09-02 14:29:58.095 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds +2025-09-02 14:29:58.095 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.095 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.095 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.095 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Categories (Term varchar(255) not null, primary key (Term)) +2025-09-02 14:29:58.095 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table CategoryEntryReferences (entryId varchar(255) not null, category varchar(255) not null, primary key (entryId, category)) +2025-09-02 14:29:58.096 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Entries (EntryID varchar(255) not null, CreationDate timestamp not null, DateLastUpdated timestamp not null, EntryBody clob, Feed varchar(255), primary key (EntryID)) +2025-09-02 14:29:58.096 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Feeds (Name varchar(255) not null, FeedID varchar(255), primary key (Name)) +2025-09-02 14:29:58.096 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CA3D8A01E foreign key (category) references Categories +2025-09-02 14:29:58.097 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CFBC7269D foreign key (entryId) references Entries +2025-09-02 14:29:58.098 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table Entries add constraint FK45B1C704D6F525E foreign key (Feed) references Feeds +2025-09-02 14:29:58.099 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000232: Schema update complete +2025-09-02 14:29:58.099 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries +2025-09-02 14:29:58.099 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries +2025-09-02 14:29:58.099 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] +2025-09-02 14:29:58.100 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598100 +2025-09-02 14:29:58.100 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.100 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.100 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.100 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.100 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.100 [main] DEBUG org.hibernate.SQL - select this_.Name as Name7_0_, this_.FeedID as FeedID7_0_ from Feeds this_ where this_.Name = ? +2025-09-02 14:29:58.101 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.101 [main] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID7_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.101 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feedName, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.101 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entryId1, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.101 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat1, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.102 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat2, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.102 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [] (initialized) +2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1], was: [] (initialized) +2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat1], was: [] (initialized) +2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat2], was: [] (initialized) +2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 4 insertions, 0 updates, 0 deletions to 4 objects +2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 4 (re)creations, 0 updates, 0 removals to 4 collections +2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=Tue Sep 02 14:29:58 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat1, org.atomhopper.adapter.jpa.PersistedCategory#cat2], creationDate=Tue Sep 02 14:29:58 IST 2025, entryId=entryId1} +2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat1, feedEntries=[]} +2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[], feedId=feedId, name=feedName} +2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat2, feedEntries=[]} +2025-09-02 14:29:58.102 [main] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.103 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] +2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.104 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 2 rows inserted +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.104 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 4 +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.104 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598104 +2025-09-02 14:29:58.104 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.104 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.104 [main] DEBUG org.hibernate.SQL - select this_.Name as Name7_0_, this_.FeedID as FeedID7_0_ from Feeds this_ where this_.Name = ? +2025-09-02 14:29:58.104 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entryId2, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID7_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat3, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] (uninitialized) +2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2], was: [] (initialized) +2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat3], was: [] (initialized) +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 2 insertions, 0 updates, 0 deletions to 3 objects +2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 2 (re)creations, 0 updates, 0 removals to 3 collections +2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=Tue Sep 02 14:29:58 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat3], creationDate=Tue Sep 02 14:29:58 IST 2025, entryId=entryId2} +2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=, feedId=feedId, name=feedName} +2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat3, feedEntries=[]} +2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.106 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.106 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] +2025-09-02 14:29:58.106 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.106 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.107 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.107 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598107 +2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.SQL - select this_.Name as Name7_0_, this_.FeedID as FeedID7_0_ from Feeds this_ where this_.Name = ? +2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.107 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.107 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.107 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.108 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.108 [main] DEBUG org.hibernate.SQL - select entries0_.Feed as Feed7_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID8_0_, entries0_.CreationDate as Creation2_8_0_, entries0_.DateLastUpdated as DateLast3_8_0_, entries0_.EntryBody as EntryBody8_0_, entries0_.Feed as Feed8_0_ from Entries entries0_ where entries0_.Feed=? +2025-09-02 14:29:58.108 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.109 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.109 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId1] +2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Result set row: 1 +2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId2] +2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId1] +2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId1] +2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId2] +2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId2] +2025-09-02 14:29:58.111 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.111 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.111 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.111 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.111 [main] DEBUG org.hibernate.loader.Loader - Done loading collection +2025-09-02 14:29:58.111 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] +2025-09-02 14:29:58.111 [main] DEBUG org.hibernate.SQL - select categories0_.entryId as entryId8_1_, categories0_.category as category1_, persistedc1_.Term as Term9_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#cat3] +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] +2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#cat3] +2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#cat3] +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Done loading collection +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.SQL - select categories0_.entryId as entryId8_1_, categories0_.category as category1_, persistedc1_.Term as Term9_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#cat1] +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set row: 1 +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#cat2] +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] +2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#cat1] +2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#cat1] +2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#cat2] +2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#cat2] +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Done loading collection +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] (initialized) +2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] (initialized) +2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] (initialized) +2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat3], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat3] (uninitialized) +2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat1], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat1] (uninitialized) +2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat2], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat2] (uninitialized) +2025-09-02 14:29:58.113 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 6 objects +2025-09-02 14:29:58.113 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 6 collections +2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=2025-09-02 14:29:58.1, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat3], creationDate=2025-09-02 14:29:58.1, entryId=entryId2} +2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=2025-09-02 14:29:58.099, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat1, org.atomhopper.adapter.jpa.PersistedCategory#cat2], creationDate=2025-09-02 14:29:58.099, entryId=entryId1} +2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat1, feedEntries=} +2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entryId2, org.atomhopper.adapter.jpa.PersistedEntry#entryId1], feedId=feedId, name=feedName} +2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat2, feedEntries=} +2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat3, feedEntries=} +2025-09-02 14:29:58.113 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.113 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 6 +2025-09-02 14:29:58.113 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.113 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.113 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@531c311e +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@22b53226 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@1fcb4808 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@726e5805 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@40c80397 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4b672daa +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@ea9b7c6 +2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@e077866 +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] +2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] +2025-09-02 14:29:58.116 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. +2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} +2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.116 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed +2025-09-02 14:29:58.116 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds +2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false +2025-09-02 14:29:58.117 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false +2025-09-02 14:29:58.117 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry +2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false +2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false +2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false +2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false +2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory +2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody +2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category +2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed +2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.120 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000402: Using Hibernate built-in connection pool (not for production use!) +2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000115: Hibernate connection pool size: 20 +2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000006: Autocommit mode: false +2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:WhenCreatingFeed] +2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000046: Connection properties: {user=sa, password=} +2025-09-02 14:29:58.120 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection +2025-09-02 14:29:58.121 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenCreatingFeed, Isolation Level: 2 +2025-09-02 14:29:58.121 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Database -> + name : H2 + version : 2.1.210 (2022-01-17) + major : 2 + minor : 1 +2025-09-02 14:29:58.121 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Driver -> + name : H2 JDBC Driver + version : 2.1.210 (2022-01-17) + major : 2 + minor : 1 +2025-09-02 14:29:58.121 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - JDBC version : 4.2 +2025-09-02 14:29:58.122 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch size: 15 +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto +2025-09-02 14:29:58.123 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory +2025-09-02 14:29:58.123 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled +2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE +2025-09-02 14:29:58.123 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory +2025-09-02 14:29:58.123 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} +2025-09-02 14:29:58.123 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= +, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.connection.url=jdbc:h2:mem:WhenCreatingFeed, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} +2025-09-02 14:29:58.124 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.124 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.124 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? +2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_15_, persistede_.DateLastUpdated as DateLast3_15_, persistede_.EntryBody as EntryBody15_, persistede_.Feed as Feed15_ from Entries persistede_ where persistede_.EntryID=? +2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? +2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID14_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? +2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID15_1_, persistede0_.CreationDate as Creation2_15_1_, persistede0_.DateLastUpdated as DateLast3_15_1_, persistede0_.EntryBody as EntryBody15_1_, persistede0_.Feed as Feed15_1_, categories1_.entryId as entryId15_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term16_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID15_1_, persistede0_.CreationDate as Creation2_15_1_, persistede0_.DateLastUpdated as DateLast3_15_1_, persistede0_.EntryBody as EntryBody15_1_, persistede0_.Feed as Feed15_1_, categories1_.entryId as entryId15_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term16_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.128 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category16_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID15_0_, persistede1_.CreationDate as Creation2_15_0_, persistede1_.DateLastUpdated as DateLast3_15_0_, persistede1_.EntryBody as EntryBody15_0_, persistede1_.Feed as Feed15_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? +2025-09-02 14:29:58.128 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId15_1_, categories0_.category as category1_, persistedc1_.Term as Term16_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:58.128 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed14_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID15_0_, entries0_.CreationDate as Creation2_15_0_, entries0_.DateLastUpdated as DateLast3_15_0_, entries0_.EntryBody as EntryBody15_0_, entries0_.Feed as Feed15_0_ from Entries entries0_ where entries0_.Feed=? +2025-09-02 14:29:58.128 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: f483da91-7bda-40ee-b500-bc2b6457f660 () +2025-09-02 14:29:58.128 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured +2025-09-02 14:29:58.128 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory +2025-09-02 14:29:58.128 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update +2025-09-02 14:29:58.128 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata +2025-09-02 14:29:58.129 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000396: Updating schema +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories +2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries +2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds +2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries +2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds +2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.129 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Categories (Term varchar(255) not null, primary key (Term)) +2025-09-02 14:29:58.130 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table CategoryEntryReferences (entryId varchar(255) not null, category varchar(255) not null, primary key (entryId, category)) +2025-09-02 14:29:58.130 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Entries (EntryID varchar(255) not null, CreationDate timestamp not null, DateLastUpdated timestamp not null, EntryBody clob, Feed varchar(255), primary key (EntryID)) +2025-09-02 14:29:58.131 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Feeds (Name varchar(255) not null, FeedID varchar(255), primary key (Name)) +2025-09-02 14:29:58.131 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CA3D8A01E foreign key (category) references Categories +2025-09-02 14:29:58.132 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CFBC7269D foreign key (entryId) references Entries +2025-09-02 14:29:58.133 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table Entries add constraint FK45B1C704D6F525E foreign key (Feed) references Feeds +2025-09-02 14:29:58.134 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000232: Schema update complete +2025-09-02 14:29:58.134 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries +2025-09-02 14:29:58.134 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries +2025-09-02 14:29:58.134 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] +2025-09-02 14:29:58.134 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598134 +2025-09-02 14:29:58.134 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.134 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.134 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.134 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.134 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.134 [main] DEBUG org.hibernate.SQL - select this_.Name as Name14_0_, this_.FeedID as FeedID14_0_ from Feeds this_ where this_.Name = ? +2025-09-02 14:29:58.135 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.135 [main] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID14_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feedName, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entryId, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.136 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: term, using strategy: org.hibernate.id.Assigned +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.136 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [] (initialized) +2025-09-02 14:29:58.136 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId], was: [] (initialized) +2025-09-02 14:29:58.136 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#term], was: [] (initialized) +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 insertions, 0 updates, 0 deletions to 3 objects +2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 0 removals to 3 collections +2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=Tue Sep 02 14:29:58 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#term], creationDate=Tue Sep 02 14:29:58 IST 2025, entryId=entryId} +2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[], feedId=feedId, name=feedName} +2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=term, feedEntries=[]} +2025-09-02 14:29:58.136 [main] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.137 [main] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.137 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) +2025-09-02 14:29:58.137 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] +2025-09-02 14:29:58.137 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.137 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted +2025-09-02 14:29:58.137 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.137 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 +2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch +2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.138 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598138 +2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.138 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.138 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.138 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.138 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.SQL - select this_.Name as Name14_0_, this_.FeedID as FeedID14_0_ from Feeds this_ +2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.138 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.SQL - select entries0_.Feed as Feed14_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID15_0_, entries0_.CreationDate as Creation2_15_0_, entries0_.DateLastUpdated as DateLast3_15_0_, entries0_.EntryBody as EntryBody15_0_, entries0_.Feed as Feed15_0_ from Entries entries0_ where entries0_.Feed=? +2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Done loading collection +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] (initialized) +2025-09-02 14:29:58.140 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] (uninitialized) +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 2 collections +2025-09-02 14:29:58.140 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.140 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=2025-09-02 14:29:58.134, categories=, creationDate=2025-09-02 14:29:58.134, entryId=entryId} +2025-09-02 14:29:58.140 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entryId], feedId=feedId, name=feedName} +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.140 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 2 +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.SQL - select this_.Name as Name14_0_, this_.FeedID as FeedID14_0_ from Feeds this_ +2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.140 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.140 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.141 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.141 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.SQL - select this_.EntryID as EntryID15_0_, this_.CreationDate as Creation2_15_0_, this_.DateLastUpdated as DateLast3_15_0_, this_.EntryBody as EntryBody15_0_, this_.Feed as Feed15_0_ from Entries this_ where this_.EntryID = ? and this_.Feed=? +2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.141 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.142 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.142 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598142 +2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection +2025-09-02 14:29:58.142 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false +2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.SQL - select this_.EntryID as EntryID15_0_, this_.CreationDate as Creation2_15_0_, this_.DateLastUpdated as DateLast3_15_0_, this_.EntryBody as EntryBody15_0_, this_.Feed as Feed15_0_ from Entries this_ where this_.EntryID = ? and this_.Feed=? +2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId] +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] +2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.SQL - select categories0_.entryId as entryId15_1_, categories0_.category as category1_, persistedc1_.Term as Term16_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] +2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 +2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#term] +2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] +2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#term] +2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#term] +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections +2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Done loading collection +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections +2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] (initialized) +2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#term], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#term] (uninitialized) +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 2 collections +2025-09-02 14:29:58.143 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: +2025-09-02 14:29:58.143 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#null, dateLastUpdated=2025-09-02 14:29:58.134, categories=[org.atomhopper.adapter.jpa.PersistedCategory#term], creationDate=2025-09-02 14:29:58.134, entryId=entryId} +2025-09-02 14:29:58.143 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=term, feedEntries=} +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection +2025-09-02 14:29:58.143 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 1 +2025-09-02 14:29:58.143 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection +2025-09-02 14:29:58.144 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection +2025-09-02 14:29:58.144 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@4baf352a +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@1bb1fde8 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@15eebbff +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@22d6f11 +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@30990c1b +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@2453f95d +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@44828f6b +2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@2dbe250d +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] +2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] +2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] +2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] +2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] +2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] +2025-09-02 14:29:58.145 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. +2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} +2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.145 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed +2025-09-02 14:29:58.145 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds +2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false +2025-09-02 14:29:58.146 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false +2025-09-02 14:29:58.146 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry +2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false +2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false +2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false +2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false +2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory +2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody +2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category +2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed +2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.148 [main] WARN o.h.s.j.c.i.ConnectionProviderInitiator - HHH000181: No appropriate connection provider encountered, assuming application will be supplying connections +2025-09-02 14:29:58.149 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2025-09-02 14:29:58.149 [main] INFO o.h.e.j.internal.LobCreatorBuilder - HHH000422: Disabling contextual LOB creation as connection was null +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto +2025-09-02 14:29:58.149 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory +2025-09-02 14:29:58.149 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled +2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE +2025-09-02 14:29:58.149 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory +2025-09-02 14:29:58.149 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} +2025-09-02 14:29:58.149 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= +, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} +2025-09-02 14:29:58.149 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.149 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.149 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_22_, persistede_.DateLastUpdated as DateLast3_22_, persistede_.EntryBody as EntryBody22_, persistede_.Feed as Feed22_ from Entries persistede_ where persistede_.EntryID=? +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? +2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID21_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? +2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? +2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID22_1_, persistede0_.CreationDate as Creation2_22_1_, persistede0_.DateLastUpdated as DateLast3_22_1_, persistede0_.EntryBody as EntryBody22_1_, persistede0_.Feed as Feed22_1_, categories1_.entryId as entryId22_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term23_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID22_1_, persistede0_.CreationDate as Creation2_22_1_, persistede0_.DateLastUpdated as DateLast3_22_1_, persistede0_.EntryBody as EntryBody22_1_, persistede0_.Feed as Feed22_1_, categories1_.entryId as entryId22_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term23_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.153 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category23_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID22_0_, persistede1_.CreationDate as Creation2_22_0_, persistede1_.DateLastUpdated as DateLast3_22_0_, persistede1_.EntryBody as EntryBody22_0_, persistede1_.Feed as Feed22_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? +2025-09-02 14:29:58.153 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId22_1_, categories0_.category as category1_, persistedc1_.Term as Term23_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:58.153 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed21_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID22_0_, entries0_.CreationDate as Creation2_22_0_, entries0_.DateLastUpdated as DateLast3_22_0_, entries0_.EntryBody as EntryBody22_0_, entries0_.Feed as Feed22_0_ from Entries entries0_ where entries0_.Feed=? +2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: 0879371f-67da-4c37-928d-162fb11b8dfb () +2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured +2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory +2025-09-02 14:29:58.153 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update +2025-09-02 14:29:58.153 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata +2025-09-02 14:29:58.153 [main] ERROR o.h.tool.hbm2ddl.SchemaUpdate - HHH000299: Could not complete schema update +java.lang.UnsupportedOperationException: The application must supply JDBC connections + at org.hibernate.service.jdbc.connections.internal.UserSuppliedConnectionProviderImpl.getConnection(UserSuppliedConnectionProviderImpl.java:62) + at org.hibernate.tool.hbm2ddl.SuppliedConnectionProviderConnectionHelper.prepare(SuppliedConnectionProviderConnectionHelper.java:51) + at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:194) + at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:178) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:497) + at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1744) + at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1782) + at org.atomhopper.hibernate.HibernateSessionManager.buildSessionFactory(HibernateSessionManager.java:29) + at org.atomhopper.hibernate.HibernateSessionManager.(HibernateSessionManager.java:16) + at org.atomhopper.hibernate.HibernateFeedRepository.(HibernateFeedRepository.java:36) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenPerformingComplexAction.setup(HibernateFeedRepositoryTest.java:83) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.RunBefores.invokeMethod(RunBefores.java:33) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries +2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries +2025-09-02 14:29:58.153 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] +2025-09-02 14:29:58.193 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598193 +2025-09-02 14:29:58.194 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 +2025-09-02 14:29:58.194 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.194 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.196 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@314b8f2d +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@664a9613 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@5118388b +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@15a902e7 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@7876d598 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4a3e3e8b +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@5af28b27 +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@71104a4 +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] +2025-09-02 14:29:58.197 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.197 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed +2025-09-02 14:29:58.197 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false +2025-09-02 14:29:58.198 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false +2025-09-02 14:29:58.198 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry +2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false +2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false +2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false +2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false +2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} +2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory +2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody +2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings +2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category +2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed +2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.200 [main] WARN o.h.s.j.c.i.ConnectionProviderInitiator - HHH000181: No appropriate connection provider encountered, assuming application will be supplying connections +2025-09-02 14:29:58.200 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2025-09-02 14:29:58.200 [main] INFO o.h.e.j.internal.LobCreatorBuilder - HHH000422: Disabling contextual LOB creation as connection was null +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto +2025-09-02 14:29:58.201 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory +2025-09-02 14:29:58.201 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled +2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE +2025-09-02 14:29:58.201 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory +2025-09-02 14:29:58.201 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} +2025-09-02 14:29:58.201 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= +, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} +2025-09-02 14:29:58.201 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.201 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.201 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_29_, persistede_.DateLastUpdated as DateLast3_29_, persistede_.EntryBody as EntryBody29_, persistede_.Feed as Feed29_ from Entries persistede_ where persistede_.EntryID=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID28_ from Feeds persistedf_ where persistedf_.Name=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? +2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID29_1_, persistede0_.CreationDate as Creation2_29_1_, persistede0_.DateLastUpdated as DateLast3_29_1_, persistede0_.EntryBody as EntryBody29_1_, persistede0_.Feed as Feed29_1_, categories1_.entryId as entryId29_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term30_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID29_1_, persistede0_.CreationDate as Creation2_29_1_, persistede0_.DateLastUpdated as DateLast3_29_1_, persistede0_.EntryBody as EntryBody29_1_, persistede0_.Feed as Feed29_1_, categories1_.entryId as entryId29_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term30_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? +2025-09-02 14:29:58.204 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category30_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID29_0_, persistede1_.CreationDate as Creation2_29_0_, persistede1_.DateLastUpdated as DateLast3_29_0_, persistede1_.EntryBody as EntryBody29_0_, persistede1_.Feed as Feed29_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? +2025-09-02 14:29:58.204 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId29_1_, categories0_.category as category1_, persistedc1_.Term as Term30_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? +2025-09-02 14:29:58.204 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed28_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID29_0_, entries0_.CreationDate as Creation2_29_0_, entries0_.DateLastUpdated as DateLast3_29_0_, entries0_.EntryBody as EntryBody29_0_, entries0_.Feed as Feed29_0_ from Entries entries0_ where entries0_.Feed=? +2025-09-02 14:29:58.204 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: 02e627d9-d969-421c-9b9f-b9827b9dea7e () +2025-09-02 14:29:58.204 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured +2025-09-02 14:29:58.204 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory +2025-09-02 14:29:58.204 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update +2025-09-02 14:29:58.204 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata +2025-09-02 14:29:58.204 [main] ERROR o.h.tool.hbm2ddl.SchemaUpdate - HHH000299: Could not complete schema update +java.lang.UnsupportedOperationException: The application must supply JDBC connections + at org.hibernate.service.jdbc.connections.internal.UserSuppliedConnectionProviderImpl.getConnection(UserSuppliedConnectionProviderImpl.java:62) + at org.hibernate.tool.hbm2ddl.SuppliedConnectionProviderConnectionHelper.prepare(SuppliedConnectionProviderConnectionHelper.java:51) + at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:194) + at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:178) + at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:497) + at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1744) + at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1782) + at org.atomhopper.hibernate.HibernateSessionManager.buildSessionFactory(HibernateSessionManager.java:29) + at org.atomhopper.hibernate.HibernateSessionManager.(HibernateSessionManager.java:16) + at org.atomhopper.hibernate.HibernateFeedRepository.(HibernateFeedRepository.java:36) + at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenPerformingSimpleAction.setup(HibernateFeedRepositoryTest.java:58) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.RunBefores.invokeMethod(RunBefores.java:33) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:58.205 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries +2025-09-02 14:29:58.205 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries +2025-09-02 14:29:58.205 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] +2025-09-02 14:29:58.206 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598206 +2025-09-02 14:29:58.206 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035982 +2025-09-02 14:29:58.206 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin +2025-09-02 14:29:58.206 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection +2025-09-02 14:29:58.206 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 0 +2025-09-02 14:29:58.329 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:29:58.329 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null +2025-09-02 14:29:58.334 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: + Title: WoodSToX XML-processor + Symbolic name: null + Vendor: woodstox.codehaus.org + Version: 3.2.6 +2025-09-02 14:29:58.335 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox +2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA +2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 +2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] diff --git a/adapters/jdbc/logs/hopper.log b/adapters/jdbc/logs/hopper.log new file mode 100644 index 00000000..65fc7cd6 --- /dev/null +++ b/adapters/jdbc/logs/hopper.log @@ -0,0 +1,31 @@ +2025-09-02 14:30:10.353 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:10.354 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null +2025-09-02 14:30:10.359 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: + Title: WoodSToX XML-processor + Symbolic name: null + Vendor: woodstox.codehaus.org + Version: 3.2.6 +2025-09-02 14:30:10.370 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox +2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT +2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 +2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] +2025-09-02 14:30:10.376 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper +2025-09-02 14:30:10.377 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush +2025-09-02 14:30:10.377 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close +2025-09-02 14:30:10.423 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper +2025-09-02 14:30:10.423 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush +2025-09-02 14:30:10.423 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close +2025-09-02 14:30:10.458 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo +2025-09-02 14:30:10.458 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Retrying...(retryCount=0) +2025-09-02 14:30:10.471 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo +2025-09-02 14:30:10.471 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Retrying...(retryCount=1) +2025-09-02 14:30:10.483 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo +2025-09-02 14:30:10.484 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo +2025-09-02 14:30:10.484 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Retrying...(retryCount=0) +2025-09-02 14:30:10.530 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:10.530 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null +2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA +2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 +2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] diff --git a/adapters/migration/logs/hopper.log b/adapters/migration/logs/hopper.log new file mode 100644 index 00000000..885301bf --- /dev/null +++ b/adapters/migration/logs/hopper.log @@ -0,0 +1,2 @@ +2025-09-02 14:30:09.535 [main] ERROR o.a.m.adapter.MigrationFeedPublisher - Error writing entry to NEW feed:namespace/feed EntryId=urn:uuid:75f8cf3e-abe3-4825-a859-55f2aadbd0bc +2025-09-02 14:30:09.580 [main] ERROR o.a.m.adapter.MigrationFeedPublisher - Error writing entry to OLD feed:namespace/feed EntryId=urn:uuid:b1d96c44-180a-4b78-8722-3d80b89923bb diff --git a/adapters/mongodb/logs/hopper.log b/adapters/mongodb/logs/hopper.log new file mode 100644 index 00000000..10cd7d05 --- /dev/null +++ b/adapters/mongodb/logs/hopper.log @@ -0,0 +1,21 @@ +2025-09-02 14:30:02.983 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:02.988 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null +2025-09-02 14:30:02.993 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: + Title: WoodSToX XML-processor + Symbolic name: null + Vendor: woodstox.codehaus.org + Version: 3.2.6 +2025-09-02 14:30:02.994 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox +2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA +2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 +2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] +2025-09-02 14:30:03.040 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:03.040 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null +2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT +2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 +2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] +2025-09-02 14:30:03.048 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper +2025-09-02 14:30:03.049 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush +2025-09-02 14:30:03.049 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close diff --git a/adapters/postgres-adapter/logs/hopper.log b/adapters/postgres-adapter/logs/hopper.log new file mode 100644 index 00000000..724084a3 --- /dev/null +++ b/adapters/postgres-adapter/logs/hopper.log @@ -0,0 +1,22 @@ +2025-09-02 14:30:03.703 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:03.704 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null +2025-09-02 14:30:03.709 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: + Title: WoodSToX XML-processor + Symbolic name: null + Vendor: woodstox.codehaus.org + Version: 3.2.6 +2025-09-02 14:30:03.710 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox +2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT +2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 +2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] +2025-09-02 14:30:03.715 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper +2025-09-02 14:30:03.716 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush +2025-09-02 14:30:03.716 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close +2025-09-02 14:30:03.787 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:03.787 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null +2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA +2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 +2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] +2025-09-02 14:30:03.841 [main] WARN o.a.p.adapter.PostgresFeedSource - Marker must have a page direction specified as either "forward" or "backward" diff --git a/hopper/logs/hopper.log b/hopper/logs/hopper.log new file mode 100644 index 00000000..91c9f96e --- /dev/null +++ b/hopper/logs/hopper.log @@ -0,0 +1,792 @@ +2025-09-02 14:29:56.491 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error +java.lang.RuntimeException: null + at org.atomhopper.abdera.FeedAdapter.getFeed(FeedAdapter.java:146) + at org.atomhopper.abdera.FeedAdapterTest$WhenGettingFeed.shouldReturnServerErrorOnFeedSourceException(FeedAdapterTest.java:162) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.512 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document +2025-09-02 14:29:56.518 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error +java.lang.RuntimeException: null + at org.atomhopper.abdera.FeedAdapter.getEntry(FeedAdapter.java:198) + at org.atomhopper.abdera.FeedAdapterTest$WhenGettingEntryFromFeed.shouldReturnServerErrorOnFeedSourceException(FeedAdapterTest.java:143) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.522 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document +2025-09-02 14:29:56.525 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error +java.lang.RuntimeException: null + at org.atomhopper.abdera.FeedAdapter.deleteEntry(FeedAdapter.java:187) + at org.atomhopper.abdera.FeedAdapterTest$WhenDeletingEntryFromFeed.shouldReturnServerErrorOnFeedPublisherException(FeedAdapterTest.java:124) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.536 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not Allowed +2025-09-02 14:29:56.542 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error +java.lang.RuntimeException: null + at org.atomhopper.abdera.FeedAdapter.putEntry(FeedAdapter.java:176) + at org.atomhopper.abdera.FeedAdapterTest$WhenPuttingEntryToFeed.shouldReturnServerErrorOnFeedPublisherException(FeedAdapterTest.java:98) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.545 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not Allowed +2025-09-02 14:29:56.549 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document +2025-09-02 14:29:56.551 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error +java.lang.RuntimeException: null + at org.atomhopper.abdera.FeedAdapter.postEntry(FeedAdapter.java:155) + at org.atomhopper.abdera.FeedAdapterTest$WhenPostingEntryToFeed.shouldReturnServerErrorOnFeedPublisherException(FeedAdapterTest.java:72) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.553 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not Allowed +2025-09-02 14:29:56.556 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document +2025-09-02 14:29:56.568 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document +2025-09-02 14:29:56.574 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document +2025-09-02 14:29:56.581 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not modified +2025-09-02 14:29:56.599 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Bad Request +2025-09-02 14:29:56.605 [main] ERROR o.a.abdera.WorkspaceProvider - null +java.lang.RuntimeException: null + at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) + at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequestWithTransactionalCollectionAdapter.shouldCompensateTransactionWhenExceptionOccurs(WorkspaceProviderTest.java:133) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.606 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error +java.lang.RuntimeException: null + at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) + at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequestWithTransactionalCollectionAdapter.shouldCompensateTransactionWhenExceptionOccurs(WorkspaceProviderTest.java:133) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.615 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown +2025-09-02 14:29:56.616 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown +2025-09-02 14:29:56.617 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown +2025-09-02 14:29:56.618 [main] ERROR o.a.abdera.WorkspaceProvider - null +java.lang.RuntimeException: null + at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) + at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequest.shouldReturnServerErrorWhenProcessingExceptionOccurs(WorkspaceProviderTest.java:86) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.618 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error +java.lang.RuntimeException: null + at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) + at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequest.shouldReturnServerErrorWhenProcessingExceptionOccurs(WorkspaceProviderTest.java:86) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.junit.runners.Suite.runChild(Suite.java:128) + at org.junit.runners.Suite.runChild(Suite.java:27) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.619 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown +2025-09-02 14:29:56.750 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.780 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/xml +2025-09-02 14:29:56.804 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:29:56.804 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null +2025-09-02 14:29:56.805 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: + Title: WoodSToX XML-processor + Symbolic name: null + Vendor: woodstox.codehaus.org + Version: 3.2.6 +2025-09-02 14:29:56.806 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox +2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 +2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA +2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 +2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] +2025-09-02 14:29:56.812 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.813 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/xml +2025-09-02 14:29:56.813 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/xml: java.lang.ArrayIndexOutOfBoundsException +org.apache.abdera.parser.ParseException: java.lang.ArrayIndexOutOfBoundsException + at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:128) + at org.apache.abdera.util.AbstractParser.parse(AbstractParser.java:77) + at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:179) + at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testEmptyXmlInput(UnifiedParserTest.java:230) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +Caused by: java.lang.ArrayIndexOutOfBoundsException: null + at java.lang.System.arraycopy(Native Method) + at java.io.PushbackInputStream.unread(PushbackInputStream.java:235) + at org.apache.abdera.i18n.text.io.DynamicPushbackInputStream.unread(DynamicPushbackInputStream.java:91) + at org.apache.abdera.i18n.text.io.PeekAheadInputStream.peek(PeekAheadInputStream.java:61) + at org.apache.abdera.i18n.text.io.PeekAheadInputStream.peek(PeekAheadInputStream.java:52) + at org.apache.abdera.i18n.text.io.CharsetSniffingInputStream.detectEncoding(CharsetSniffingInputStream.java:110) + at org.apache.abdera.parser.stax.util.FOMSniffingInputStream.detectEncoding(FOMSniffingInputStream.java:39) + at org.apache.abdera.i18n.text.io.CharsetSniffingInputStream.(CharsetSniffingInputStream.java:81) + at org.apache.abdera.i18n.text.io.CharsetSniffingInputStream.(CharsetSniffingInputStream.java:74) + at org.apache.abdera.parser.stax.util.FOMSniffingInputStream.(FOMSniffingInputStream.java:35) + at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:107) + ... 37 common frames omitted +2025-09-02 14:29:56.814 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.814 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json +2025-09-02 14:29:56.902 [main] ERROR o.a.abdera.parser.JsonAtomParser - IOException while parsing JSON from InputStream +com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false') + at [Source: (ByteArrayInputStream); line: 1, column: 2] + at com.fasterxml.jackson.core.JsonParser._constructError(JsonParser.java:2337) + at com.fasterxml.jackson.core.base.ParserMinimalBase._reportError(ParserMinimalBase.java:710) + at com.fasterxml.jackson.core.base.ParserMinimalBase._reportUnexpectedChar(ParserMinimalBase.java:635) + at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._handleUnexpectedValue(UTF8StreamJsonParser.java:2691) + at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._nextTokenNotInObject(UTF8StreamJsonParser.java:870) + at com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken(UTF8StreamJsonParser.java:762) + at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4684) + at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) + at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) + at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) + at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) + at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) + at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testMismatchedJsonContentTypeWithXmlBody(UnifiedParserTest.java:211) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.902 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/json: Failed to parse JSON from InputStream +org.apache.abdera.parser.ParseException: Failed to parse JSON from InputStream + at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:63) + at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) + at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testMismatchedJsonContentTypeWithXmlBody(UnifiedParserTest.java:211) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +Caused by: com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false') + at [Source: (ByteArrayInputStream); line: 1, column: 2] + at com.fasterxml.jackson.core.JsonParser._constructError(JsonParser.java:2337) + at com.fasterxml.jackson.core.base.ParserMinimalBase._reportError(ParserMinimalBase.java:710) + at com.fasterxml.jackson.core.base.ParserMinimalBase._reportUnexpectedChar(ParserMinimalBase.java:635) + at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._handleUnexpectedValue(UTF8StreamJsonParser.java:2691) + at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._nextTokenNotInObject(UTF8StreamJsonParser.java:870) + at com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken(UTF8StreamJsonParser.java:762) + at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4684) + at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) + at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) + at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) + at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) + ... 36 common frames omitted +2025-09-02 14:29:56.903 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.903 [main] ERROR o.a.abdera.parser.UnifiedParser - Unsupported Content-Type: text/plain +2025-09-02 14:29:56.904 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.905 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json +2025-09-02 14:29:56.936 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO +2025-09-02 14:29:56.939 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO +2025-09-02 14:29:56.942 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.943 [main] ERROR o.a.abdera.parser.UnifiedParser - Content-Type header is missing or empty +2025-09-02 14:29:56.943 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.944 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json +2025-09-02 14:29:56.944 [main] ERROR o.a.abdera.parser.JsonAtomParser - IOException while parsing JSON from InputStream +com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input + at [Source: (ByteArrayInputStream); line: 1, column: 0] + at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:59) + at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4688) + at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) + at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) + at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) + at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) + at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) + at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testEmptyJsonInput(UnifiedParserTest.java:224) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +2025-09-02 14:29:56.944 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/json: Failed to parse JSON from InputStream +org.apache.abdera.parser.ParseException: Failed to parse JSON from InputStream + at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:63) + at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) + at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testEmptyJsonInput(UnifiedParserTest.java:224) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +Caused by: com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input + at [Source: (ByteArrayInputStream); line: 1, column: 0] + at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:59) + at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4688) + at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) + at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) + at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) + at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) + ... 36 common frames omitted +2025-09-02 14:29:56.945 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.946 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: text/json +2025-09-02 14:29:56.946 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO +2025-09-02 14:29:56.947 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO +2025-09-02 14:29:56.948 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.948 [main] ERROR o.a.abdera.parser.UnifiedParser - Content-Type header is missing or empty +2025-09-02 14:29:56.949 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.949 [main] WARN o.a.abdera.parser.UnifiedParser - InputStream is null +2025-09-02 14:29:56.950 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.950 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json; charset=UTF-8 +2025-09-02 14:29:56.951 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO +2025-09-02 14:29:56.952 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO +2025-09-02 14:29:56.952 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.953 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/atom+xml +2025-09-02 14:29:56.953 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.954 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/atom+xml +2025-09-02 14:29:56.955 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.955 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/atom+xml; charset=UTF-8; boundary=something +2025-09-02 14:29:56.956 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.957 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/xml +2025-09-02 14:29:56.957 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/xml: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '{' (code 123) in prolog; expected '<' + at [row,col {unknown-source}]: [1,1] +org.apache.abdera.parser.ParseException: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '{' (code 123) in prolog; expected '<' + at [row,col {unknown-source}]: [1,1] + at org.apache.abdera.parser.stax.FOMBuilder.next(FOMBuilder.java:244) + at org.apache.abdera.parser.stax.FOMBuilder.getFomDocument(FOMBuilder.java:317) + at org.apache.abdera.parser.stax.FOMParser.getDocument(FOMParser.java:79) + at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:191) + at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:124) + at org.apache.abdera.util.AbstractParser.parse(AbstractParser.java:77) + at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:179) + at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testMismatchedXmlContentTypeWithJsonBody(UnifiedParserTest.java:217) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) + at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) + at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) + at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) + at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) + at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) + at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) + at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) + at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) + at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) + at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) + at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) + at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) + at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) + at org.junit.runners.ParentRunner.run(ParentRunner.java:413) + at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) + at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) + at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) + at com.sun.proxy.$Proxy0.invoke(Unknown Source) + at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) + at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) + at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) +Caused by: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '{' (code 123) in prolog; expected '<' + at [row,col {unknown-source}]: [1,1] + at com.ctc.wstx.sr.StreamScanner.throwUnexpectedChar(StreamScanner.java:648) + at com.ctc.wstx.sr.BasicStreamReader.nextFromProlog(BasicStreamReader.java:2047) + at com.ctc.wstx.sr.BasicStreamReader.next(BasicStreamReader.java:1069) + at org.apache.axiom.util.stax.wrapper.XMLStreamReaderWrapper.next(XMLStreamReaderWrapper.java:225) + at org.apache.abdera.parser.stax.FOMBuilder.getNextElementToParse(FOMBuilder.java:149) + at org.apache.abdera.parser.stax.FOMBuilder.next(FOMBuilder.java:174) + ... 41 common frames omitted +2025-09-02 14:29:56.958 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.958 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: text/xml +2025-09-02 14:29:56.959 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.960 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/atom+json +2025-09-02 14:29:56.960 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO +2025-09-02 14:29:56.961 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO +2025-09-02 14:29:56.962 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.962 [main] WARN o.a.abdera.parser.UnifiedParser - Reader is null +2025-09-02 14:29:56.963 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser +2025-09-02 14:29:56.963 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json +2025-09-02 14:29:56.963 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Parsing JSON from Reader +2025-09-02 14:29:56.964 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO from Reader +2025-09-02 14:29:56.965 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO +2025-09-02 14:29:56.992 [main] ERROR o.a.config.WorkspaceConfigProcessor - Feed 'Testing Feed Archive' cannot be tagged as an archived feed & not have a current-feed declared. +2025-09-02 14:29:57.019 [main] ERROR o.a.config.WorkspaceConfigProcessor - Feed 'Testing Feed Archive' cannot be a non-archived feed & have a current-feed declared. +2025-09-02 14:29:57.027 [main] ERROR o.a.config.WorkspaceConfigProcessor - Feed 'Testing Feed Archive' cannot be tagged as an archived feed & have an archive-feed declared. From d6a65f1185ca1befc1071134281a5e3ced6410da Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 16:00:36 +0530 Subject: [PATCH 07/14] CF-4251:docker image for postgreSQL array fix --- .github/workflows/Docker.build.yaml | 33 ++++++----------------------- 1 file changed, 6 insertions(+), 27 deletions(-) diff --git a/.github/workflows/Docker.build.yaml b/.github/workflows/Docker.build.yaml index 2621adc9..cc287013 100644 --- a/.github/workflows/Docker.build.yaml +++ b/.github/workflows/Docker.build.yaml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: self-hosted permissions: contents: read packages: read @@ -23,36 +23,15 @@ jobs: - name: Set Short commit SHA as image tag run: echo "IMAGE_TAG=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV - - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: ${{ env.AWS_REGION }} - - - name: GitHub Packages login - run: | - echo "Logging into GitHub Container Registry..." - echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin - echo "Logging into GitHub Packages Maven registry..." - echo ${{ secrets.GITHUB_TOKEN }} | docker login maven.pkg.github.com -u ${{ github.actor }} --password-stdin - - name: AWS ECR login run: | aws ecr get-login-password --region ${{ env.AWS_REGION }} | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com - name: Build docker image run: | - cd docker - echo "Building Docker image with GitHub authentication..." - docker build \ - --build-arg GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} \ - --build-arg GITHUB_ACTOR=${{ github.actor }} \ - --progress=plain \ - -t atomhopper:latest-alpine . - echo "Tagging images for ECR..." - docker tag atomhopper:latest-alpine ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} - docker tag atomhopper:latest-alpine ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:latest + docker build -f docker/Dockerfile \ + --build-arg GITHUB_TOKEN=${{ secrets.PAT_FOR_DOCKER }} \ + --build-arg GITHUB_ACTOR=${{ secrets.USER_ID }} \ + -t ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} . - name: Push docker image to registry run: | - docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} - docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:latest \ No newline at end of file + docker push ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.ECR_REPOSITORY }}:${{ env.IMAGE_TAG }} \ No newline at end of file From 22bda05a33fe45dceea9664a4c42406a3155d1f9 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 16:03:53 +0530 Subject: [PATCH 08/14] CF-4251:docker image for postgreSQL array fix --- adapters/dynamoDB_adapters/logs/hopper.log | 36 - adapters/hibernate/logs/hopper.log | 2517 -------------------- adapters/jdbc/logs/hopper.log | 31 - adapters/migration/logs/hopper.log | 2 - adapters/mongodb/logs/hopper.log | 21 - adapters/postgres-adapter/logs/hopper.log | 22 - hopper/logs/hopper.log | 792 ------ 7 files changed, 3421 deletions(-) delete mode 100644 adapters/dynamoDB_adapters/logs/hopper.log delete mode 100644 adapters/hibernate/logs/hopper.log delete mode 100644 adapters/jdbc/logs/hopper.log delete mode 100644 adapters/migration/logs/hopper.log delete mode 100644 adapters/mongodb/logs/hopper.log delete mode 100644 adapters/postgres-adapter/logs/hopper.log delete mode 100644 hopper/logs/hopper.log diff --git a/adapters/dynamoDB_adapters/logs/hopper.log b/adapters/dynamoDB_adapters/logs/hopper.log deleted file mode 100644 index 684a70e1..00000000 --- a/adapters/dynamoDB_adapters/logs/hopper.log +++ /dev/null @@ -1,36 +0,0 @@ -2025-09-02 14:30:12.157 [main] DEBUG com.amazonaws.AmazonWebServiceClient - Internal logging successfully configured to commons logger: true -2025-09-02 14:30:12.187 [main] DEBUG com.amazonaws.metrics.AwsSdkMetrics - Admin mbean registered under com.amazonaws.management:type=AwsSdkMetrics -2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - Filter String finding -2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - searchString: -2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - conditionExpression: feed = :feed -2025-09-02 14:30:12.351 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - filterExpression: null -2025-09-02 14:30:12.352 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - valueMap: {:feed=namespace/feed} -2025-09-02 14:30:12.352 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - pageSize: 25 -2025-09-02 14:30:12.352 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - else me gaya -2025-09-02 14:30:12.353 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - before query -2025-09-02 14:30:12.353 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - after query -2025-09-02 14:30:12.353 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - feedPage Size: 0 -2025-09-02 14:30:12.354 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - hydrateFeed START -2025-09-02 14:30:12.371 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - addFeedSelfLink START -2025-09-02 14:30:12.374 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - addFeedSelfLink END -2025-09-02 14:30:12.376 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - dddddddddd -2025-09-02 14:30:12.376 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - hydrateFeed END -2025-09-02 14:30:12.384 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry START -2025-09-02 14:30:12.399 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry END -2025-09-02 14:30:12.405 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry START -2025-09-02 14:30:12.405 [main] ERROR o.a.d.adapter.DynamoDBFeedSource - getEntry END -2025-09-02 14:30:12.466 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:12.466 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null -2025-09-02 14:30:12.472 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: - Title: WoodSToX XML-processor - Symbolic name: null - Vendor: woodstox.codehaus.org - Version: 3.2.6 -2025-09-02 14:30:12.472 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox -2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT -2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 -2025-09-02 14:30:12.473 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] -2025-09-02 14:30:12.478 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper -2025-09-02 14:30:12.479 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush -2025-09-02 14:30:12.479 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close diff --git a/adapters/hibernate/logs/hopper.log b/adapters/hibernate/logs/hopper.log deleted file mode 100644 index e21dc4b3..00000000 --- a/adapters/hibernate/logs/hopper.log +++ /dev/null @@ -1,2517 +0,0 @@ -2025-09-02 14:29:57.628 [main] DEBUG org.jboss.logging - Logging Provider: org.jboss.logging.Slf4jLoggerProvider -2025-09-02 14:29:57.634 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e -2025-09-02 14:29:57.635 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 -2025-09-02 14:29:57.636 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 -2025-09-02 14:29:57.636 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:57.636 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:57.637 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:57.638 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:57.638 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:57.639 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:57.640 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:57.641 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:57.642 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:57.643 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:57.644 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:57.644 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:57.645 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 -2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:57.646 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:57.647 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 -2025-09-02 14:29:57.648 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 -2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:57.649 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 -2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:57.650 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b -2025-09-02 14:29:57.651 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:57.652 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:57.652 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 -2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 -2025-09-02 14:29:57.653 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@14ec4505 -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@53ca01a2 -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@358c99f5 -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@3ee0fea4 -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@48524010 -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4b168fa9 -2025-09-02 14:29:57.654 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@1a84f40f -2025-09-02 14:29:57.655 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@23282c25 -2025-09-02 14:29:57.661 [main] INFO o.h.annotations.common.Version - HCANN000001: Hibernate Commons Annotations {4.0.1.Final} -2025-09-02 14:29:57.663 [main] INFO org.hibernate.Version - HHH000412: Hibernate Core {4.1.3.Final} -2025-09-02 14:29:57.663 [main] INFO org.hibernate.cfg.Environment - HHH000206: hibernate.properties not found -2025-09-02 14:29:57.664 [main] INFO org.hibernate.cfg.Environment - HHH000021: Bytecode provider name : javassist -2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] -2025-09-02 14:29:57.669 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] -2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] -2025-09-02 14:29:57.670 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] -2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2025-09-02 14:29:57.671 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2025-09-02 14:29:57.675 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. -2025-09-02 14:29:57.682 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} -2025-09-02 14:29:57.691 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:57.691 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:57.692 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:57.699 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:57.699 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:57.700 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed -2025-09-02 14:29:57.701 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds -2025-09-02 14:29:57.710 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.711 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false -2025-09-02 14:29:57.711 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name -2025-09-02 14:29:57.712 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name -2025-09-02 14:29:57.716 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:57.716 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.716 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.719 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.719 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.719 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:57.720 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:57.720 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:57.720 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:57.721 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries -2025-09-02 14:29:57.721 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.721 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false -2025-09-02 14:29:57.721 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId -2025-09-02 14:29:57.721 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId -2025-09-02 14:29:57.721 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:57.722 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:57.722 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:57.722 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry -2025-09-02 14:29:57.722 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries -2025-09-02 14:29:57.727 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.728 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false -2025-09-02 14:29:57.728 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId -2025-09-02 14:29:57.728 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId -2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} -2025-09-02 14:29:57.728 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} -2025-09-02 14:29:57.729 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:57.729 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories -2025-09-02 14:29:57.729 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.729 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false -2025-09-02 14:29:57.730 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate -2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate -2025-09-02 14:29:57.730 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false -2025-09-02 14:29:57.730 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated -2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated -2025-09-02 14:29:57.730 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.730 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false -2025-09-02 14:29:57.731 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody -2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody -2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} -2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed -2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:57.731 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory -2025-09-02 14:29:57.731 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories -2025-09-02 14:29:57.732 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.732 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false -2025-09-02 14:29:57.732 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term -2025-09-02 14:29:57.732 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term -2025-09-02 14:29:57.732 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:57.733 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:57.733 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries -2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name -2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId -2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId -2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate -2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated -2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody -2025-09-02 14:29:57.733 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term -2025-09-02 14:29:57.733 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:57.735 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:57.735 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:57.735 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:57.735 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:57.735 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:57.736 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category -2025-09-02 14:29:57.736 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:57.736 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key -2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries -2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed -2025-09-02 14:29:57.737 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:57.737 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:57.737 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:57.737 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId -2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:57.737 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:57.740 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000402: Using Hibernate built-in connection pool (not for production use!) -2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000115: Hibernate connection pool size: 20 -2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000006: Autocommit mode: false -2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:WhenOperatingInParallel] -2025-09-02 14:29:57.741 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000046: Connection properties: {user=sa, password=} -2025-09-02 14:29:57.747 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection -2025-09-02 14:29:57.841 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenOperatingInParallel, Isolation Level: 2 -2025-09-02 14:29:57.842 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Database -> - name : H2 - version : 2.1.210 (2022-01-17) - major : 2 - minor : 1 -2025-09-02 14:29:57.842 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Driver -> - name : H2 JDBC Driver - version : 2.1.210 (2022-01-17) - major : 2 - minor : 1 -2025-09-02 14:29:57.842 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - JDBC version : 4.2 -2025-09-02 14:29:57.851 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch size: 15 -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled -2025-09-02 14:29:57.884 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto -2025-09-02 14:29:57.884 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) -2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 -2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled -2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled -2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled -2025-09-02 14:29:57.885 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory -2025-09-02 14:29:57.886 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled -2025-09-02 14:29:57.886 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE -2025-09-02 14:29:57.890 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory -2025-09-02 14:29:57.892 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} -2025-09-02 14:29:57.892 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= -, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.connection.url=jdbc:h2:mem:WhenOperatingInParallel, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} -2025-09-02 14:29:57.896 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.896 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.896 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? -2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_1_, persistede_.DateLastUpdated as DateLast3_1_, persistede_.EntryBody as EntryBody1_, persistede_.Feed as Feed1_ from Entries persistede_ where persistede_.EntryID=? -2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? -2025-09-02 14:29:57.928 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? -2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? -2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) -2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null -2025-09-02 14:29:57.929 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? -2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? -2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? -2025-09-02 14:29:57.931 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? -2025-09-02 14:29:57.933 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? -2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? -2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? -2025-09-02 14:29:57.934 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? -2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:57.939 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:57.940 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID1_0_, persistede0_.CreationDate as Creation2_1_0_, persistede0_.DateLastUpdated as DateLast3_1_0_, persistede0_.EntryBody as EntryBody1_0_, persistede0_.Feed as Feed1_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID1_1_, persistede0_.CreationDate as Creation2_1_1_, persistede0_.DateLastUpdated as DateLast3_1_1_, persistede0_.EntryBody as EntryBody1_1_, persistede0_.Feed as Feed1_1_, categories1_.entryId as entryId1_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term2_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID1_1_, persistede0_.CreationDate as Creation2_1_1_, persistede0_.DateLastUpdated as DateLast3_1_1_, persistede0_.EntryBody as EntryBody1_1_, persistede0_.Feed as Feed1_1_, categories1_.entryId as entryId1_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term2_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:57.942 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term2_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:57.943 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:57.944 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name0_0_, persistedf0_.FeedID as FeedID0_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:57.945 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category2_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID1_0_, persistede1_.CreationDate as Creation2_1_0_, persistede1_.DateLastUpdated as DateLast3_1_0_, persistede1_.EntryBody as EntryBody1_0_, persistede1_.Feed as Feed1_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? -2025-09-02 14:29:57.945 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId1_1_, categories0_.category as category1_, persistedc1_.Term as Term2_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:57.946 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed0_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID1_0_, entries0_.CreationDate as Creation2_1_0_, entries0_.DateLastUpdated as DateLast3_1_0_, entries0_.EntryBody as EntryBody1_0_, entries0_.Feed as Feed1_0_ from Entries entries0_ where entries0_.Feed=? -2025-09-02 14:29:57.947 [main] DEBUG o.h.internal.SessionFactoryRegistry - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@55562aa9 -2025-09-02 14:29:57.948 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: c1cc4c4e-d59b-4ae2-944b-e4ae513fa06b () -2025-09-02 14:29:57.948 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured -2025-09-02 14:29:57.948 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory -2025-09-02 14:29:57.949 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update -2025-09-02 14:29:57.949 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata -2025-09-02 14:29:57.958 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000396: Updating schema -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:57.958 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:57.958 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories -2025-09-02 14:29:57.958 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.958 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences -2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries -2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds -2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories -2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences -2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries -2025-09-02 14:29:57.959 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds -2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.959 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:57.959 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Categories (Term varchar(255) not null, primary key (Term)) -2025-09-02 14:29:57.962 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table CategoryEntryReferences (entryId varchar(255) not null, category varchar(255) not null, primary key (entryId, category)) -2025-09-02 14:29:57.963 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Entries (EntryID varchar(255) not null, CreationDate timestamp not null, DateLastUpdated timestamp not null, EntryBody clob, Feed varchar(255), primary key (EntryID)) -2025-09-02 14:29:57.963 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Feeds (Name varchar(255) not null, FeedID varchar(255), primary key (Name)) -2025-09-02 14:29:57.964 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CA3D8A01E foreign key (category) references Categories -2025-09-02 14:29:57.967 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CFBC7269D foreign key (entryId) references Entries -2025-09-02 14:29:57.968 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table Entries add constraint FK45B1C704D6F525E foreign key (Feed) references Feeds -2025-09-02 14:29:57.970 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000232: Schema update complete -2025-09-02 14:29:57.970 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries -2025-09-02 14:29:57.970 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries -2025-09-02 14:29:57.971 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] -2025-09-02 14:29:57.973 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803597973 -2025-09-02 14:29:57.973 [Thread-2] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803597973 -2025-09-02 14:29:57.984 [Thread-2] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035979 -2025-09-02 14:29:57.984 [Thread-3] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035979 -2025-09-02 14:29:57.984 [Thread-2] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:57.984 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:57.984 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:57.984 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:57.984 [Thread-3] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection -2025-09-02 14:29:57.984 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:57.985 [Thread-2] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:57.985 [Thread-3] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenOperatingInParallel, Isolation Level: 2 -2025-09-02 14:29:57.985 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:57.985 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.019 [Thread-3] DEBUG org.hibernate.SQL - select this_.Name as Name0_0_, this_.FeedID as FeedID0_0_ from Feeds this_ where this_.Name = ? -2025-09-02 14:29:58.019 [Thread-2] DEBUG org.hibernate.SQL - select this_.Name as Name0_0_, this_.FeedID as FeedID0_0_ from Feeds this_ where this_.Name = ? -2025-09-02 14:29:58.046 [Thread-3] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.046 [Thread-2] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.049 [Thread-3] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.049 [Thread-2] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.050 [Thread-2] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feed1, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.050 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feed2, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.055 [Thread-2] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entry1, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.055 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entry2, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.055 [Thread-3] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.055 [Thread-2] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.055 [Thread-2] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.055 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.055 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.055 [Thread-2] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.056 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.056 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.056 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.056 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feed2], was: [] (initialized) -2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feed1], was: [] (initialized) -2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry2], was: [] (initialized) -2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry1], was: [] (initialized) -2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat], was: [] (initialized) -2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat], was: [] (initialized) -2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 insertions, 0 updates, 0 deletions to 3 objects -2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 insertions, 0 updates, 0 deletions to 3 objects -2025-09-02 14:29:58.057 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 0 removals to 3 collections -2025-09-02 14:29:58.057 [Thread-2] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 0 removals to 3 collections -2025-09-02 14:29:58.058 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.058 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.059 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feed1, dateLastUpdated=Tue Sep 02 14:29:57 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat], creationDate=Tue Sep 02 14:29:57 IST 2025, entryId=entry1} -2025-09-02 14:29:58.059 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entry1], feedId=feed1, name=feed1} -2025-09-02 14:29:58.059 [Thread-2] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat, feedEntries=[]} -2025-09-02 14:29:58.060 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feed2, dateLastUpdated=Tue Sep 02 14:29:57 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat], creationDate=Tue Sep 02 14:29:57 IST 2025, entryId=entry2} -2025-09-02 14:29:58.060 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entry2], feedId=feed2, name=feed2} -2025-09-02 14:29:58.060 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat, feedEntries=[]} -2025-09-02 14:29:58.061 [Thread-3] DEBUG o.h.service.spi.ServiceBinding - Overriding existing service binding [org.hibernate.engine.jdbc.batch.spi.BatchBuilder] -2025-09-02 14:29:58.061 [Thread-2] DEBUG o.h.service.spi.ServiceBinding - Overriding existing service binding [org.hibernate.service.jmx.spi.JmxService] -2025-09-02 14:29:58.061 [Thread-3] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.061 [Thread-2] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.062 [Thread-3] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.062 [Thread-2] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.063 [Thread-2] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.063 [Thread-3] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.063 [Thread-2] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry1] -2025-09-02 14:29:58.064 [Thread-2] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.064 [Thread-2] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted -2025-09-02 14:29:58.064 [Thread-2] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.065 [Thread-2] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 92 -2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.065 [Thread-2] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.065 [Thread-3] DEBUG o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 1 */ 'cat' )"; SQL statement: -insert into Categories (Term) values (?) [23505-210] [n/a] -org.h2.jdbc.JdbcSQLIntegrityConstraintViolationException: Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 1 */ 'cat' )"; SQL statement: -insert into Categories (Term) values (?) [23505-210] - at org.h2.message.DbException.getJdbcSQLException(DbException.java:527) - at org.h2.message.DbException.getJdbcSQLException(DbException.java:496) - at org.h2.message.DbException.get(DbException.java:227) - at org.h2.message.DbException.get(DbException.java:203) - at org.h2.index.Index.getDuplicateKeyException(Index.java:525) - at org.h2.mvstore.db.MVSecondaryIndex.checkUnique(MVSecondaryIndex.java:223) - at org.h2.mvstore.db.MVSecondaryIndex.add(MVSecondaryIndex.java:184) - at org.h2.mvstore.db.MVTable.addRow(MVTable.java:519) - at org.h2.command.dml.Insert.insertRows(Insert.java:174) - at org.h2.command.dml.Insert.update(Insert.java:135) - at org.h2.command.dml.DataChangeStatement.update(DataChangeStatement.java:61) - at org.h2.command.CommandContainer.update(CommandContainer.java:174) - at org.h2.command.Command.executeUpdate(Command.java:252) - at org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:209) - at org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:169) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.hibernate.engine.jdbc.internal.proxy.AbstractStatementProxyHandler.continueInvocation(AbstractStatementProxyHandler.java:122) - at org.hibernate.engine.jdbc.internal.proxy.AbstractProxyHandler.invoke(AbstractProxyHandler.java:81) - at com.sun.proxy.$Proxy22.executeUpdate(Unknown Source) - at org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch.addToBatch(NonBatchingBatch.java:56) - at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2859) - at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:3300) - at org.hibernate.action.internal.EntityInsertAction.execute(EntityInsertAction.java:88) - at org.hibernate.engine.spi.ActionQueue.execute(ActionQueue.java:362) - at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:354) - at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:275) - at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:326) - at org.hibernate.event.internal.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:52) - at org.hibernate.internal.SessionImpl.flush(SessionImpl.java:1214) - at org.hibernate.internal.SessionImpl.managedFlush(SessionImpl.java:403) - at org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.beforeTransactionCommit(JdbcTransaction.java:101) - at org.hibernate.engine.transaction.spi.AbstractTransactionImpl.commit(AbstractTransactionImpl.java:175) - at org.atomhopper.hibernate.HibernateFeedRepository.performSimpleAction(HibernateFeedRepository.java:52) - at org.atomhopper.hibernate.HibernateFeedRepository.saveEntry(HibernateFeedRepository.java:248) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$2.run(HibernateFeedRepositoryTest.java:313) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$2.run(HibernateFeedRepositoryTest.java:297) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$Runner$1.run(HibernateFeedRepositoryTest.java:250) - at java.lang.Thread.run(Thread.java:750) -2025-09-02 14:29:58.065 [Thread-3] WARN o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 23505, SQLState: 23505 -2025-09-02 14:29:58.065 [Thread-3] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 1 */ 'cat' )"; SQL statement: -insert into Categories (Term) values (?) [23505-210] -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - rolling back -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - rolled JDBC Connection -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 93 -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.066 [Thread-3] INFO o.h.e.j.b.internal.AbstractBatchImpl - HHH000010: On release of batch it still contained JDBC statements -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598066 -2025-09-02 14:29:58.066 [Thread-3] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.066 [Thread-3] DEBUG org.hibernate.SQL - select this_.Name as Name0_0_, this_.FeedID as FeedID0_0_ from Feeds this_ where this_.Name = ? -2025-09-02 14:29:58.066 [Thread-3] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.067 [Thread-3] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID0_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.067 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feed2, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.067 [Thread-3] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entry2, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.067 [Thread-3] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feed2], was: [] (initialized) -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry2], was: [] (initialized) -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat], was: [] (initialized) -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 2 insertions, 0 updates, 0 deletions to 3 objects -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 1 removals to 3 collections -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feed2, dateLastUpdated=Tue Sep 02 14:29:57 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat], creationDate=Tue Sep 02 14:29:57 IST 2025, entryId=entry2} -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entry2], feedId=feed2, name=feed2} -2025-09-02 14:29:58.068 [Thread-3] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat, feedEntries=[]} -2025-09-02 14:29:58.069 [Thread-3] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.069 [Thread-3] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.070 [Thread-3] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entry2] -2025-09-02 14:29:58.070 [Thread-3] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.070 [Thread-3] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted -2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.071 [Thread-3] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 5 -2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.071 [Thread-3] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.073 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598073 -2025-09-02 14:29:58.073 [Thread-4] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598073 -2025-09-02 14:29:58.073 [Thread-5] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 -2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.073 [Thread-4] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 -2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.073 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.073 [Thread-4] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.074 [Thread-5] DEBUG org.hibernate.SQL - select this_.Term as Term2_0_ from Categories this_ where this_.Term = ? -2025-09-02 14:29:58.074 [Thread-4] DEBUG org.hibernate.SQL - select this_.Term as Term2_0_ from Categories this_ where this_.Term = ? -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: update, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: update, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update], was: [] (initialized) -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update], was: [] (initialized) -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 insertions, 0 updates, 0 deletions to 1 objects -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 insertions, 0 updates, 0 deletions to 1 objects -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 (re)creations, 0 updates, 0 removals to 1 collections -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 1 (re)creations, 0 updates, 0 removals to 1 collections -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.074 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=update, feedEntries=[]} -2025-09-02 14:29:58.074 [Thread-4] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=update, feedEntries=[]} -2025-09-02 14:29:58.074 [Thread-5] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.074 [Thread-4] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.075 [Thread-4] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 2 -2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.075 [Thread-4] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 9 */ 'update' )"; SQL statement: -insert into Categories (Term) values (?) [23505-210] [n/a] -org.h2.jdbc.JdbcSQLIntegrityConstraintViolationException: Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 9 */ 'update' )"; SQL statement: -insert into Categories (Term) values (?) [23505-210] - at org.h2.message.DbException.getJdbcSQLException(DbException.java:527) - at org.h2.message.DbException.getJdbcSQLException(DbException.java:496) - at org.h2.message.DbException.get(DbException.java:227) - at org.h2.message.DbException.get(DbException.java:203) - at org.h2.index.Index.getDuplicateKeyException(Index.java:525) - at org.h2.mvstore.db.MVSecondaryIndex.checkUnique(MVSecondaryIndex.java:223) - at org.h2.mvstore.db.MVSecondaryIndex.add(MVSecondaryIndex.java:184) - at org.h2.mvstore.db.MVTable.addRow(MVTable.java:519) - at org.h2.command.dml.Insert.insertRows(Insert.java:174) - at org.h2.command.dml.Insert.update(Insert.java:135) - at org.h2.command.dml.DataChangeStatement.update(DataChangeStatement.java:61) - at org.h2.command.CommandContainer.update(CommandContainer.java:174) - at org.h2.command.Command.executeUpdate(Command.java:252) - at org.h2.jdbc.JdbcPreparedStatement.executeUpdateInternal(JdbcPreparedStatement.java:209) - at org.h2.jdbc.JdbcPreparedStatement.executeUpdate(JdbcPreparedStatement.java:169) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.hibernate.engine.jdbc.internal.proxy.AbstractStatementProxyHandler.continueInvocation(AbstractStatementProxyHandler.java:122) - at org.hibernate.engine.jdbc.internal.proxy.AbstractProxyHandler.invoke(AbstractProxyHandler.java:81) - at com.sun.proxy.$Proxy22.executeUpdate(Unknown Source) - at org.hibernate.engine.jdbc.batch.internal.NonBatchingBatch.addToBatch(NonBatchingBatch.java:56) - at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2859) - at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:3300) - at org.hibernate.action.internal.EntityInsertAction.execute(EntityInsertAction.java:88) - at org.hibernate.engine.spi.ActionQueue.execute(ActionQueue.java:362) - at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:354) - at org.hibernate.engine.spi.ActionQueue.executeActions(ActionQueue.java:275) - at org.hibernate.event.internal.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:326) - at org.hibernate.event.internal.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:52) - at org.hibernate.internal.SessionImpl.flush(SessionImpl.java:1214) - at org.hibernate.internal.SessionImpl.managedFlush(SessionImpl.java:403) - at org.hibernate.engine.transaction.internal.jdbc.JdbcTransaction.beforeTransactionCommit(JdbcTransaction.java:101) - at org.hibernate.engine.transaction.spi.AbstractTransactionImpl.commit(AbstractTransactionImpl.java:175) - at org.atomhopper.hibernate.HibernateFeedRepository.performComplexAction(HibernateFeedRepository.java:79) - at org.atomhopper.hibernate.HibernateFeedRepository.updateCategories(HibernateFeedRepository.java:210) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$4.run(HibernateFeedRepositoryTest.java:352) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$4.run(HibernateFeedRepositoryTest.java:340) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenOperatingInParallel$Runner$1.run(HibernateFeedRepositoryTest.java:250) - at java.lang.Thread.run(Thread.java:750) -2025-09-02 14:29:58.075 [Thread-5] WARN o.h.e.jdbc.spi.SqlExceptionHelper - SQL Error: 23505, SQLState: 23505 -2025-09-02 14:29:58.075 [Thread-5] ERROR o.h.e.jdbc.spi.SqlExceptionHelper - Unique index or primary key violation: "PUBLIC.PRIMARY_KEY_6 ON PUBLIC.CATEGORIES(TERM) VALUES ( /* 9 */ 'update' )"; SQL statement: -insert into Categories (Term) values (?) [23505-210] -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - rolling back -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - rolled JDBC Connection -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 2 -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.075 [Thread-5] INFO o.h.e.j.b.internal.AbstractBatchImpl - HHH000010: On release of batch it still contained JDBC statements -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598075 -2025-09-02 14:29:58.075 [Thread-5] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035980 -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.075 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.075 [Thread-5] DEBUG org.hibernate.SQL - select this_.Term as Term2_0_ from Categories this_ where this_.Term = ? -2025-09-02 14:29:58.076 [Thread-5] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.076 [Thread-5] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#update] -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#update] -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#update] -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#update] (uninitialized) -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 1 collections -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=update, feedEntries=} -2025-09-02 14:29:58.077 [Thread-5] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.078 [Thread-5] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 -2025-09-02 14:29:58.078 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.078 [Thread-5] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.078 [Thread-5] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.078 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@f001896 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@13f17eb4 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@1d0d6318 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@4bc28c33 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@4409e975 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@5c153b9e -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@2a7686a7 -2025-09-02 14:29:58.079 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@758a34ce -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2025-09-02 14:29:58.079 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2025-09-02 14:29:58.080 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. -2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} -2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.080 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.080 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed -2025-09-02 14:29:58.080 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false -2025-09-02 14:29:58.081 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false -2025-09-02 14:29:58.081 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.081 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry -2025-09-02 14:29:58.081 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false -2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false -2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false -2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated -2025-09-02 14:29:58.082 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false -2025-09-02 14:29:58.082 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody -2025-09-02 14:29:58.082 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory -2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false -2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term -2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.083 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.083 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries -2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name -2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId -2025-09-02 14:29:58.083 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId -2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate -2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated -2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody -2025-09-02 14:29:58.084 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category -2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key -2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries -2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed -2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.084 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.084 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.084 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000402: Using Hibernate built-in connection pool (not for production use!) -2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000115: Hibernate connection pool size: 20 -2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000006: Autocommit mode: false -2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:WhenGettingCategories] -2025-09-02 14:29:58.084 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000046: Connection properties: {user=sa, password=} -2025-09-02 14:29:58.084 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection -2025-09-02 14:29:58.086 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenGettingCategories, Isolation Level: 2 -2025-09-02 14:29:58.086 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Database -> - name : H2 - version : 2.1.210 (2022-01-17) - major : 2 - minor : 1 -2025-09-02 14:29:58.086 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Driver -> - name : H2 JDBC Driver - version : 2.1.210 (2022-01-17) - major : 2 - minor : 1 -2025-09-02 14:29:58.086 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - JDBC version : 4.2 -2025-09-02 14:29:58.087 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch size: 15 -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto -2025-09-02 14:29:58.088 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory -2025-09-02 14:29:58.088 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled -2025-09-02 14:29:58.088 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE -2025-09-02 14:29:58.088 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory -2025-09-02 14:29:58.088 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} -2025-09-02 14:29:58.088 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= -, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.connection.url=jdbc:h2:mem:WhenGettingCategories, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} -2025-09-02 14:29:58.089 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.089 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.089 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_8_, persistede_.DateLastUpdated as DateLast3_8_, persistede_.EntryBody as EntryBody8_, persistede_.Feed as Feed8_ from Entries persistede_ where persistede_.EntryID=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID7_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? -2025-09-02 14:29:58.090 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? -2025-09-02 14:29:58.091 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.091 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID8_0_, persistede0_.CreationDate as Creation2_8_0_, persistede0_.DateLastUpdated as DateLast3_8_0_, persistede0_.EntryBody as EntryBody8_0_, persistede0_.Feed as Feed8_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID8_1_, persistede0_.CreationDate as Creation2_8_1_, persistede0_.DateLastUpdated as DateLast3_8_1_, persistede0_.EntryBody as EntryBody8_1_, persistede0_.Feed as Feed8_1_, categories1_.entryId as entryId8_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term9_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID8_1_, persistede0_.CreationDate as Creation2_8_1_, persistede0_.DateLastUpdated as DateLast3_8_1_, persistede0_.EntryBody as EntryBody8_1_, persistede0_.Feed as Feed8_1_, categories1_.entryId as entryId8_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term9_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term9_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.092 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.093 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name7_0_, persistedf0_.FeedID as FeedID7_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.093 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category9_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID8_0_, persistede1_.CreationDate as Creation2_8_0_, persistede1_.DateLastUpdated as DateLast3_8_0_, persistede1_.EntryBody as EntryBody8_0_, persistede1_.Feed as Feed8_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? -2025-09-02 14:29:58.093 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId8_1_, categories0_.category as category1_, persistedc1_.Term as Term9_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:58.093 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed7_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID8_0_, entries0_.CreationDate as Creation2_8_0_, entries0_.DateLastUpdated as DateLast3_8_0_, entries0_.EntryBody as EntryBody8_0_, entries0_.Feed as Feed8_0_ from Entries entries0_ where entries0_.Feed=? -2025-09-02 14:29:58.093 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: c02cb2c3-1227-47c1-a6a1-5bdac83f3304 () -2025-09-02 14:29:58.093 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured -2025-09-02 14:29:58.093 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory -2025-09-02 14:29:58.093 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update -2025-09-02 14:29:58.093 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata -2025-09-02 14:29:58.094 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000396: Updating schema -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.094 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories -2025-09-02 14:29:58.094 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences -2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries -2025-09-02 14:29:58.094 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds -2025-09-02 14:29:58.094 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories -2025-09-02 14:29:58.094 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences -2025-09-02 14:29:58.095 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries -2025-09-02 14:29:58.095 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds -2025-09-02 14:29:58.095 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.095 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.095 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.095 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Categories (Term varchar(255) not null, primary key (Term)) -2025-09-02 14:29:58.095 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table CategoryEntryReferences (entryId varchar(255) not null, category varchar(255) not null, primary key (entryId, category)) -2025-09-02 14:29:58.096 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Entries (EntryID varchar(255) not null, CreationDate timestamp not null, DateLastUpdated timestamp not null, EntryBody clob, Feed varchar(255), primary key (EntryID)) -2025-09-02 14:29:58.096 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Feeds (Name varchar(255) not null, FeedID varchar(255), primary key (Name)) -2025-09-02 14:29:58.096 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CA3D8A01E foreign key (category) references Categories -2025-09-02 14:29:58.097 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CFBC7269D foreign key (entryId) references Entries -2025-09-02 14:29:58.098 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table Entries add constraint FK45B1C704D6F525E foreign key (Feed) references Feeds -2025-09-02 14:29:58.099 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000232: Schema update complete -2025-09-02 14:29:58.099 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries -2025-09-02 14:29:58.099 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries -2025-09-02 14:29:58.099 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] -2025-09-02 14:29:58.100 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598100 -2025-09-02 14:29:58.100 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.100 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.100 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.100 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.100 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.100 [main] DEBUG org.hibernate.SQL - select this_.Name as Name7_0_, this_.FeedID as FeedID7_0_ from Feeds this_ where this_.Name = ? -2025-09-02 14:29:58.101 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.101 [main] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID7_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.101 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feedName, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.101 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entryId1, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.101 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat1, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.102 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat2, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.102 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [] (initialized) -2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1], was: [] (initialized) -2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat1], was: [] (initialized) -2025-09-02 14:29:58.102 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat2], was: [] (initialized) -2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 4 insertions, 0 updates, 0 deletions to 4 objects -2025-09-02 14:29:58.102 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 4 (re)creations, 0 updates, 0 removals to 4 collections -2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=Tue Sep 02 14:29:58 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat1, org.atomhopper.adapter.jpa.PersistedCategory#cat2], creationDate=Tue Sep 02 14:29:58 IST 2025, entryId=entryId1} -2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat1, feedEntries=[]} -2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[], feedId=feedId, name=feedName} -2025-09-02 14:29:58.102 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat2, feedEntries=[]} -2025-09-02 14:29:58.102 [main] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.103 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] -2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.103 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.104 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 2 rows inserted -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.104 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 4 -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.104 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598104 -2025-09-02 14:29:58.104 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.104 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.104 [main] DEBUG org.hibernate.SQL - select this_.Name as Name7_0_, this_.FeedID as FeedID7_0_ from Feeds this_ where this_.Name = ? -2025-09-02 14:29:58.104 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entryId2, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID7_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: cat3, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] (uninitialized) -2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2], was: [] (initialized) -2025-09-02 14:29:58.105 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat3], was: [] (initialized) -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 2 insertions, 0 updates, 0 deletions to 3 objects -2025-09-02 14:29:58.105 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 2 (re)creations, 0 updates, 0 removals to 3 collections -2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=Tue Sep 02 14:29:58 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat3], creationDate=Tue Sep 02 14:29:58 IST 2025, entryId=entryId2} -2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=, feedId=feedId, name=feedName} -2025-09-02 14:29:58.105 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat3, feedEntries=[]} -2025-09-02 14:29:58.105 [main] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.106 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.106 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] -2025-09-02 14:29:58.106 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.106 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.107 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.107 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598107 -2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.SQL - select this_.Name as Name7_0_, this_.FeedID as FeedID7_0_ from Feeds this_ where this_.Name = ? -2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.107 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.107 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.107 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.107 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.108 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.108 [main] DEBUG org.hibernate.SQL - select entries0_.Feed as Feed7_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID8_0_, entries0_.CreationDate as Creation2_8_0_, entries0_.DateLastUpdated as DateLast3_8_0_, entries0_.EntryBody as EntryBody8_0_, entries0_.Feed as Feed8_0_ from Entries entries0_ where entries0_.Feed=? -2025-09-02 14:29:58.108 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.109 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.109 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId1] -2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Result set row: 1 -2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId2] -2025-09-02 14:29:58.110 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId1] -2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId1] -2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId2] -2025-09-02 14:29:58.110 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId2] -2025-09-02 14:29:58.111 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.111 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.111 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.111 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.111 [main] DEBUG org.hibernate.loader.Loader - Done loading collection -2025-09-02 14:29:58.111 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] -2025-09-02 14:29:58.111 [main] DEBUG org.hibernate.SQL - select categories0_.entryId as entryId8_1_, categories0_.category as category1_, persistedc1_.Term as Term9_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#cat3] -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] -2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#cat3] -2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#cat3] -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Done loading collection -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.SQL - select categories0_.entryId as entryId8_1_, categories0_.category as category1_, persistedc1_.Term as Term9_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#cat1] -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result set row: 1 -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#cat2] -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] -2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#cat1] -2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#cat1] -2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#cat2] -2025-09-02 14:29:58.112 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#cat2] -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.112 [main] DEBUG org.hibernate.loader.Loader - Done loading collection -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.112 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] (initialized) -2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId1] (initialized) -2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId2] (initialized) -2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat3], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat3] (uninitialized) -2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat1], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat1] (uninitialized) -2025-09-02 14:29:58.113 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat2], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#cat2] (uninitialized) -2025-09-02 14:29:58.113 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 6 objects -2025-09-02 14:29:58.113 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 6 collections -2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=2025-09-02 14:29:58.1, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat3], creationDate=2025-09-02 14:29:58.1, entryId=entryId2} -2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=2025-09-02 14:29:58.099, categories=[org.atomhopper.adapter.jpa.PersistedCategory#cat1, org.atomhopper.adapter.jpa.PersistedCategory#cat2], creationDate=2025-09-02 14:29:58.099, entryId=entryId1} -2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat1, feedEntries=} -2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entryId2, org.atomhopper.adapter.jpa.PersistedEntry#entryId1], feedId=feedId, name=feedName} -2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat2, feedEntries=} -2025-09-02 14:29:58.113 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=cat3, feedEntries=} -2025-09-02 14:29:58.113 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.113 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 6 -2025-09-02 14:29:58.113 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.113 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.113 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@531c311e -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@22b53226 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@1fcb4808 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@726e5805 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@40c80397 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4b672daa -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@ea9b7c6 -2025-09-02 14:29:58.115 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@e077866 -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2025-09-02 14:29:58.115 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2025-09-02 14:29:58.116 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. -2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} -2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.116 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed -2025-09-02 14:29:58.116 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds -2025-09-02 14:29:58.116 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false -2025-09-02 14:29:58.117 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false -2025-09-02 14:29:58.117 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.117 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry -2025-09-02 14:29:58.117 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false -2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false -2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false -2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false -2025-09-02 14:29:58.118 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.118 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory -2025-09-02 14:29:58.118 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody -2025-09-02 14:29:58.119 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category -2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed -2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.119 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.119 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.119 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.120 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000402: Using Hibernate built-in connection pool (not for production use!) -2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000115: Hibernate connection pool size: 20 -2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000006: Autocommit mode: false -2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000401: using driver [org.h2.Driver] at URL [jdbc:h2:mem:WhenCreatingFeed] -2025-09-02 14:29:58.120 [main] INFO o.h.s.j.c.i.DriverManagerConnectionProviderImpl - HHH000046: Connection properties: {user=sa, password=} -2025-09-02 14:29:58.120 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Opening new JDBC connection -2025-09-02 14:29:58.121 [main] DEBUG o.h.s.j.c.i.DriverManagerConnectionProviderImpl - Created connection to: jdbc:h2:mem:WhenCreatingFeed, Isolation Level: 2 -2025-09-02 14:29:58.121 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Database -> - name : H2 - version : 2.1.210 (2022-01-17) - major : 2 - minor : 1 -2025-09-02 14:29:58.121 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - Driver -> - name : H2 JDBC Driver - version : 2.1.210 (2022-01-17) - major : 2 - minor : 1 -2025-09-02 14:29:58.121 [main] DEBUG o.h.e.jdbc.internal.JdbcServicesImpl - JDBC version : 4.2 -2025-09-02 14:29:58.122 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch size: 15 -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC batch updates for versioned data: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto -2025-09-02 14:29:58.123 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory -2025-09-02 14:29:58.123 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled -2025-09-02 14:29:58.123 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE -2025-09-02 14:29:58.123 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory -2025-09-02 14:29:58.123 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} -2025-09-02 14:29:58.123 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= -, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.connection.url=jdbc:h2:mem:WhenCreatingFeed, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} -2025-09-02 14:29:58.124 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.124 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.124 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? -2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_15_, persistede_.DateLastUpdated as DateLast3_15_, persistede_.EntryBody as EntryBody15_, persistede_.Feed as Feed15_ from Entries persistede_ where persistede_.EntryID=? -2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? -2025-09-02 14:29:58.124 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID14_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? -2025-09-02 14:29:58.125 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID15_0_, persistede0_.CreationDate as Creation2_15_0_, persistede0_.DateLastUpdated as DateLast3_15_0_, persistede0_.EntryBody as EntryBody15_0_, persistede0_.Feed as Feed15_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID15_1_, persistede0_.CreationDate as Creation2_15_1_, persistede0_.DateLastUpdated as DateLast3_15_1_, persistede0_.EntryBody as EntryBody15_1_, persistede0_.Feed as Feed15_1_, categories1_.entryId as entryId15_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term16_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID15_1_, persistede0_.CreationDate as Creation2_15_1_, persistede0_.DateLastUpdated as DateLast3_15_1_, persistede0_.EntryBody as EntryBody15_1_, persistede0_.Feed as Feed15_1_, categories1_.entryId as entryId15_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term16_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.126 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term16_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.127 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name14_0_, persistedf0_.FeedID as FeedID14_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.128 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category16_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID15_0_, persistede1_.CreationDate as Creation2_15_0_, persistede1_.DateLastUpdated as DateLast3_15_0_, persistede1_.EntryBody as EntryBody15_0_, persistede1_.Feed as Feed15_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? -2025-09-02 14:29:58.128 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId15_1_, categories0_.category as category1_, persistedc1_.Term as Term16_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:58.128 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed14_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID15_0_, entries0_.CreationDate as Creation2_15_0_, entries0_.DateLastUpdated as DateLast3_15_0_, entries0_.EntryBody as EntryBody15_0_, entries0_.Feed as Feed15_0_ from Entries entries0_ where entries0_.Feed=? -2025-09-02 14:29:58.128 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: f483da91-7bda-40ee-b500-bc2b6457f660 () -2025-09-02 14:29:58.128 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured -2025-09-02 14:29:58.128 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory -2025-09-02 14:29:58.128 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update -2025-09-02 14:29:58.128 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata -2025-09-02 14:29:58.129 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000396: Updating schema -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.129 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories -2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries -2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds -2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Categories -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: CategoryEntryReferences -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Entries -2025-09-02 14:29:58.129 [main] INFO java.sql.DatabaseMetaData - HHH000262: Table not found: Feeds -2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.129 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.129 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Categories (Term varchar(255) not null, primary key (Term)) -2025-09-02 14:29:58.130 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table CategoryEntryReferences (entryId varchar(255) not null, category varchar(255) not null, primary key (entryId, category)) -2025-09-02 14:29:58.130 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Entries (EntryID varchar(255) not null, CreationDate timestamp not null, DateLastUpdated timestamp not null, EntryBody clob, Feed varchar(255), primary key (EntryID)) -2025-09-02 14:29:58.131 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - create table Feeds (Name varchar(255) not null, FeedID varchar(255), primary key (Name)) -2025-09-02 14:29:58.131 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CA3D8A01E foreign key (category) references Categories -2025-09-02 14:29:58.132 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table CategoryEntryReferences add constraint FKEF969F9CFBC7269D foreign key (entryId) references Entries -2025-09-02 14:29:58.133 [main] DEBUG o.h.tool.hbm2ddl.SchemaUpdate - alter table Entries add constraint FK45B1C704D6F525E foreign key (Feed) references Feeds -2025-09-02 14:29:58.134 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000232: Schema update complete -2025-09-02 14:29:58.134 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries -2025-09-02 14:29:58.134 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries -2025-09-02 14:29:58.134 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] -2025-09-02 14:29:58.134 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598134 -2025-09-02 14:29:58.134 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.134 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.134 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.134 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.134 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.134 [main] DEBUG org.hibernate.SQL - select this_.Name as Name14_0_, this_.FeedID as FeedID14_0_ from Feeds this_ where this_.Name = ? -2025-09-02 14:29:58.135 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.135 [main] DEBUG org.hibernate.SQL - select persistedf_.Name, persistedf_.FeedID as FeedID14_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: feedName, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: entryId, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.136 [main] DEBUG org.hibernate.SQL - select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractSaveEventListener - Generated identifier: term, using strategy: org.hibernate.id.Assigned -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.136 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [] (initialized) -2025-09-02 14:29:58.136 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId], was: [] (initialized) -2025-09-02 14:29:58.136 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#term], was: [] (initialized) -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 insertions, 0 updates, 0 deletions to 3 objects -2025-09-02 14:29:58.136 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 3 (re)creations, 0 updates, 0 removals to 3 collections -2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=Tue Sep 02 14:29:58 IST 2025, categories=[org.atomhopper.adapter.jpa.PersistedCategory#term], creationDate=Tue Sep 02 14:29:58 IST 2025, entryId=entryId} -2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[], feedId=feedId, name=feedName} -2025-09-02 14:29:58.136 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=term, feedEntries=[]} -2025-09-02 14:29:58.136 [main] DEBUG org.hibernate.SQL - insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.137 [main] DEBUG org.hibernate.SQL - insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.137 [main] DEBUG org.hibernate.SQL - insert into Categories (Term) values (?) -2025-09-02 14:29:58.137 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Inserting collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] -2025-09-02 14:29:58.137 [main] DEBUG org.hibernate.SQL - insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.137 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Done inserting collection: 1 rows inserted -2025-09-02 14:29:58.137 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.137 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 -2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.internal.JdbcCoordinatorImpl - HHH000420: Closing un-released batch -2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.137 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.138 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598138 -2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.138 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.138 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.138 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.138 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.SQL - select this_.Name as Name14_0_, this_.FeedID as FeedID14_0_ from Feeds this_ -2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.138 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.138 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.SQL - select entries0_.Feed as Feed14_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID15_0_, entries0_.CreationDate as Creation2_15_0_, entries0_.DateLastUpdated as DateLast3_15_0_, entries0_.EntryBody as EntryBody15_0_, entries0_.Feed as Feed15_0_ from Entries entries0_ where entries0_.Feed=? -2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.139 [main] DEBUG org.hibernate.loader.Loader - Done loading collection -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.139 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.139 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName], was: [org.atomhopper.adapter.jpa.PersistedFeed.entries#feedName] (initialized) -2025-09-02 14:29:58.140 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] (uninitialized) -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 2 collections -2025-09-02 14:29:58.140 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.140 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#feedName, dateLastUpdated=2025-09-02 14:29:58.134, categories=, creationDate=2025-09-02 14:29:58.134, entryId=entryId} -2025-09-02 14:29:58.140 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedFeed{entries=[org.atomhopper.adapter.jpa.PersistedEntry#entryId], feedId=feedId, name=feedName} -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.140 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 2 -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.SQL - select this_.Name as Name14_0_, this_.FeedID as FeedID14_0_ from Feeds this_ -2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.140 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.140 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.140 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedFeed#feedName] -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.140 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.141 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.141 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.SQL - select this_.EntryID as EntryID15_0_, this_.CreationDate as Creation2_15_0_, this_.DateLastUpdated as DateLast3_15_0_, this_.EntryBody as EntryBody15_0_, this_.Feed as Feed15_0_ from Entries this_ where this_.EntryID = ? and this_.Feed=? -2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.141 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.141 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.142 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.142 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598142 -2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtained JDBC connection -2025-09-02 14:29:58.142 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - initial autocommit status: false -2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.SQL - select this_.EntryID as EntryID15_0_, this_.CreationDate as Creation2_15_0_, this_.DateLastUpdated as DateLast3_15_0_, this_.EntryBody as EntryBody15_0_, this_.Feed as Feed15_0_ from Entries this_ where this_.EntryID = ? and this_.Feed=? -2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.142 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedEntry#entryId] -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Loading collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] -2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.SQL - select categories0_.entryId as entryId15_1_, categories0_.category as category1_, persistedc1_.Term as Term16_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Result set contains (possibly empty) collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] -2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Result set row: 0 -2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Result row: EntityKey[org.atomhopper.adapter.jpa.PersistedCategory#term] -2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Found row of collection: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] -2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Resolving associations for [org.atomhopper.adapter.jpa.PersistedCategory#term] -2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.TwoPhaseLoad - Done materializing entity [org.atomhopper.adapter.jpa.PersistedCategory#term] -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections were found in result set for role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.l.i.CollectionLoadContext - Collection fully initialized: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.l.i.CollectionLoadContext - 1 collections initialized for role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.StatefulPersistenceContext - Initializing non-lazy collections -2025-09-02 14:29:58.143 [main] DEBUG org.hibernate.loader.Loader - Done loading collection -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - committing -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Processing flush-time cascades -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Dirty checking collections -2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId], was: [org.atomhopper.adapter.jpa.PersistedEntry.categories#entryId] (initialized) -2025-09-02 14:29:58.143 [main] DEBUG o.h.engine.internal.Collections - Collection found: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#term], was: [org.atomhopper.adapter.jpa.PersistedCategory.feedEntries#term] (uninitialized) -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 insertions, 0 updates, 0 deletions to 2 objects -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.i.AbstractFlushingEventListener - Flushed: 0 (re)creations, 0 updates, 0 removals to 2 collections -2025-09-02 14:29:58.143 [main] DEBUG o.h.internal.util.EntityPrinter - Listing entities: -2025-09-02 14:29:58.143 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedEntry{entryBody=null, feed=org.atomhopper.adapter.jpa.PersistedFeed#null, dateLastUpdated=2025-09-02 14:29:58.134, categories=[org.atomhopper.adapter.jpa.PersistedCategory#term], creationDate=2025-09-02 14:29:58.134, entryId=entryId} -2025-09-02 14:29:58.143 [main] DEBUG o.h.internal.util.EntityPrinter - org.atomhopper.adapter.jpa.PersistedCategory{term=term, feedEntries=} -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.t.i.jdbc.JdbcTransaction - committed JDBC Connection -2025-09-02 14:29:58.143 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 1 -2025-09-02 14:29:58.143 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Releasing JDBC connection -2025-09-02 14:29:58.144 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Released JDBC connection -2025-09-02 14:29:58.144 [main] DEBUG o.h.e.j.i.p.ConnectionProxyHandler - HHH000163: Logical connection releasing its physical connection -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@4baf352a -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@1bb1fde8 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@15eebbff -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@22d6f11 -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@30990c1b -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@2453f95d -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@44828f6b -2025-09-02 14:29:58.144 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@2dbe250d -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] -2025-09-02 14:29:58.144 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] -2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2025-09-02 14:29:58.145 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2025-09-02 14:29:58.145 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. -2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} -2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.145 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed -2025-09-02 14:29:58.145 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds -2025-09-02 14:29:58.145 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false -2025-09-02 14:29:58.146 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false -2025-09-02 14:29:58.146 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.146 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry -2025-09-02 14:29:58.146 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false -2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false -2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false -2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false -2025-09-02 14:29:58.147 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.147 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory -2025-09-02 14:29:58.147 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody -2025-09-02 14:29:58.148 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category -2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed -2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.148 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.148 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.148 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.148 [main] WARN o.h.s.j.c.i.ConnectionProviderInitiator - HHH000181: No appropriate connection provider encountered, assuming application will be supplying connections -2025-09-02 14:29:58.149 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2025-09-02 14:29:58.149 [main] INFO o.h.e.j.internal.LobCreatorBuilder - HHH000422: Disabling contextual LOB creation as connection was null -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto -2025-09-02 14:29:58.149 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory -2025-09-02 14:29:58.149 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled -2025-09-02 14:29:58.149 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE -2025-09-02 14:29:58.149 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory -2025-09-02 14:29:58.149 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} -2025-09-02 14:29:58.149 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= -, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} -2025-09-02 14:29:58.149 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.149 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.149 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_22_, persistede_.DateLastUpdated as DateLast3_22_, persistede_.EntryBody as EntryBody22_, persistede_.Feed as Feed22_ from Entries persistede_ where persistede_.EntryID=? -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? -2025-09-02 14:29:58.150 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID21_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? -2025-09-02 14:29:58.151 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? -2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.151 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID22_0_, persistede0_.CreationDate as Creation2_22_0_, persistede0_.DateLastUpdated as DateLast3_22_0_, persistede0_.EntryBody as EntryBody22_0_, persistede0_.Feed as Feed22_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID22_1_, persistede0_.CreationDate as Creation2_22_1_, persistede0_.DateLastUpdated as DateLast3_22_1_, persistede0_.EntryBody as EntryBody22_1_, persistede0_.Feed as Feed22_1_, categories1_.entryId as entryId22_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term23_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID22_1_, persistede0_.CreationDate as Creation2_22_1_, persistede0_.DateLastUpdated as DateLast3_22_1_, persistede0_.EntryBody as EntryBody22_1_, persistede0_.Feed as Feed22_1_, categories1_.entryId as entryId22_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term23_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term23_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.152 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.153 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name21_0_, persistedf0_.FeedID as FeedID21_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.153 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category23_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID22_0_, persistede1_.CreationDate as Creation2_22_0_, persistede1_.DateLastUpdated as DateLast3_22_0_, persistede1_.EntryBody as EntryBody22_0_, persistede1_.Feed as Feed22_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? -2025-09-02 14:29:58.153 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId22_1_, categories0_.category as category1_, persistedc1_.Term as Term23_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:58.153 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed21_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID22_0_, entries0_.CreationDate as Creation2_22_0_, entries0_.DateLastUpdated as DateLast3_22_0_, entries0_.EntryBody as EntryBody22_0_, entries0_.Feed as Feed22_0_ from Entries entries0_ where entries0_.Feed=? -2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: 0879371f-67da-4c37-928d-162fb11b8dfb () -2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured -2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory -2025-09-02 14:29:58.153 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update -2025-09-02 14:29:58.153 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata -2025-09-02 14:29:58.153 [main] ERROR o.h.tool.hbm2ddl.SchemaUpdate - HHH000299: Could not complete schema update -java.lang.UnsupportedOperationException: The application must supply JDBC connections - at org.hibernate.service.jdbc.connections.internal.UserSuppliedConnectionProviderImpl.getConnection(UserSuppliedConnectionProviderImpl.java:62) - at org.hibernate.tool.hbm2ddl.SuppliedConnectionProviderConnectionHelper.prepare(SuppliedConnectionProviderConnectionHelper.java:51) - at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:194) - at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:178) - at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:497) - at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1744) - at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1782) - at org.atomhopper.hibernate.HibernateSessionManager.buildSessionFactory(HibernateSessionManager.java:29) - at org.atomhopper.hibernate.HibernateSessionManager.(HibernateSessionManager.java:16) - at org.atomhopper.hibernate.HibernateFeedRepository.(HibernateFeedRepository.java:36) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenPerformingComplexAction.setup(HibernateFeedRepositoryTest.java:83) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.RunBefores.invokeMethod(RunBefores.java:33) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries -2025-09-02 14:29:58.153 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries -2025-09-02 14:29:58.153 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] -2025-09-02 14:29:58.193 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Complex Action Session begin: 1756803598193 -2025-09-02 14:29:58.194 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035981 -2025-09-02 14:29:58.194 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.194 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.196 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 3 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@2a40cd94 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@70a9f84e -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.TrueFalseType@276438c9 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.YesNoType@77a57272 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@1efee8e7 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@32cf48b7 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.ShortType@290dbf45 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@70beb599 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.LongType@282003e1 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.FloatType@1dd02175 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4ba2ca36 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@1445d7f -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10b48321 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.StringType@442675e1 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.UrlType@3d3fcdb0 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.DateType@59717824 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.TimeType@646be2c3 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.TimestampType@78a2da20 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@58fdd99 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7364985f -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3d36e4cd -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@b7f23d9 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@f0f2775 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@4d49af10 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.ClassType@351d0846 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@64d2d351 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3b2c72c2 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.PostgresUUIDType@2b4a2ec7 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.196 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BinaryType@c8e4bb0 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7bb58ca3 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.ImageType@61009542 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.CharArrayType@44a664f2 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@15bb6bea -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.TextType@41ee392b -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@52e677af -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@341b80b2 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2c34f934 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@25a65b77 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.SerializableType@2aece37d -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@2d9d4f9d -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@314b8f2d -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@664a9613 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@5118388b -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@15a902e7 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@7876d598 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4a3e3e8b -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@5af28b27 -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@71104a4 -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [hilo] -> [org.hibernate.id.TableHiLoGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.SequenceGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [seqhilo] -> [org.hibernate.id.SequenceHiLoGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [sequence-identity] -> [org.hibernate.id.SequenceIdentityGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2025-09-02 14:29:58.197 [main] DEBUG o.h.i.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cfg.beanvalidation.BeanValidationIntegrator]. -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Configuration - Preparing to build session factory with filters : {} -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Configuration - Processing hbm.xml files -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Configuration - Process annotated classes -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.197 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.197 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedFeed -2025-09-02 14:29:58.197 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedFeed on table Feeds -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=Name, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property name with lazy=false -2025-09-02 14:29:58.198 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for name -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property name -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=entries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='feed'} -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entries -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Feeds), mappingColumn=FeedID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property feedId with lazy=false -2025-09-02 14:29:58.198 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for feedId -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedId -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.198 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedEntry -2025-09-02 14:29:58.198 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedEntry on table Entries -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryID, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryId with lazy=false -2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryId -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryId -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=categories_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='categories_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='entryId', referencedColumn='EntryID', mappedBy=''} -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='category', referencedColumn='Term', mappedBy=''} -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property categories -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=CreationDate, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property creationDate with lazy=false -2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for creationDate -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property creationDate -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=DateLastUpdated, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property dateLastUpdated with lazy=false -2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for dateLastUpdated -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property dateLastUpdated -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=EntryBody, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property entryBody with lazy=false -2025-09-02 14:29:58.199 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for entryBody -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property entryBody -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='Feed', referencedColumn='', mappedBy=''} -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Entries), mappingColumn=feed, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feed -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.AnnotationBinder - Binding entity from annotated class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3DiscriminatorColumn{logicalColumnName'DTYPE', discriminatorTypeName='string'} -2025-09-02 14:29:58.199 [main] DEBUG org.hibernate.cfg.AnnotationBinder - No value specified for 'javax.persistence.sharedCache.mode'; using UNSPECIFIED -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.EntityBinder - Import with entity name PersistedCategory -2025-09-02 14:29:58.199 [main] DEBUG o.h.cfg.annotations.EntityBinder - Bind entity org.atomhopper.adapter.jpa.PersistedCategory on table Categories -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=Term, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.PropertyBinder - MetadataSourceProcessor property term with lazy=false -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - building SimpleValue for term -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property term -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=null, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=element, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3Column{table=org.hibernate.mapping.Table(Categories), mappingColumn=feedEntries_KEY, insertable=true, updatable=true, unique=false} -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='feedEntries_KEY', referencedColumn='null', mappedBy='null'} -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Ejb3Column - Binding column: Ejb3JoinColumn{logicalColumnName='null', referencedColumn='null', mappedBy='categories'} -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Collection role: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.PropertyBinder - Building property feedEntries -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for name -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for feedId -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryId -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for creationDate -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for dateLastUpdated -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for entryBody -2025-09-02 14:29:58.200 [main] DEBUG o.h.c.annotations.SimpleValueBinder - Setting SimpleValue typeName for term -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing fk mappings (*ToOne and JoinedSubclass) -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing extends queue -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing collection mappings -2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: entryId, element: category -2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding a OneToMany: org.atomhopper.adapter.jpa.PersistedFeed.entries through a foreign key -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Mapping collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -> Entries -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.feed -2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: Feed, one-to-many: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Second pass for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.CollectionBinder - Binding as ManyToMany: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.200 [main] DEBUG o.h.cfg.annotations.TableBinder - Retrieving property org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.200 [main] DEBUG o.hibernate.cfg.CollectionSecondPass - Mapped collection key: category, element: entryId -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing native query and ResultSetMapping mappings -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing association property references -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Processing foreign key constraints -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.200 [main] DEBUG org.hibernate.cfg.Configuration - Resolving reference to class: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.200 [main] WARN o.h.s.j.c.i.ConnectionProviderInitiator - HHH000181: No appropriate connection provider encountered, assuming application will be supplying connections -2025-09-02 14:29:58.200 [main] INFO org.hibernate.dialect.Dialect - HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2025-09-02 14:29:58.200 [main] INFO o.h.e.j.internal.LobCreatorBuilder - HHH000422: Disabling contextual LOB creation as connection was null -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Scrollable result sets: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Wrap result sets: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Connection release mode: auto -2025-09-02 14:29:58.201 [main] INFO o.h.e.t.i.TransactionFactoryInitiator - HHH000399: Using default transaction strategy (direct JDBC transactions) -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1 -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory -2025-09-02 14:29:58.201 [main] INFO o.h.h.i.a.ASTQueryTranslatorFactory - HHH000397: Using ASTQueryTranslatorFactory -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query language substitutions: {} -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Second-level cache: enabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Query cache: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.internal.NoCachingRegionFactory -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - org.hibernate.cache.internal.NoCachingRegionFactory did not provide constructor accepting java.util.Properties; attempting no-arg constructor. -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Statistics: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Named query checking : enabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - Check Nullability in Core (should be disabled when Bean Validation is on): enabled -2025-09-02 14:29:58.201 [main] DEBUG org.hibernate.cfg.SettingsFactory - multi-tenancy strategy : NONE -2025-09-02 14:29:58.201 [main] DEBUG o.h.internal.SessionFactoryImpl - Building session factory -2025-09-02 14:29:58.201 [main] DEBUG o.h.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {} -2025-09-02 14:29:58.201 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiating session factory with properties: {java.runtime.name=OpenJDK Runtime Environment, hibernate.connection.password=, sun.boot.library.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib, java.vm.version=25.462-b08, hibernate.connection.username=sa, gopherProxySet=false, java.vm.vendor=Amazon.com Inc., java.vendor.url=https://aws.amazon.com/corretto/, path.separator=:, java.vm.name=OpenJDK 64-Bit Server VM, file.encoding.pkg=sun.io, user.country=IN, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=unknown, java.vm.specification.name=Java Virtual Machine Specification, user.dir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.runtime.version=1.8.0_462-b08, java.awt.graphicsenv=sun.awt.CGraphicsEnvironment, basedir=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate, java.endorsed.dirs=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/endorsed, os.arch=aarch64, surefire.real.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar, java.io.tmpdir=/var/folders/dt/wtf24ks508b73xsrhxp8vh_80000gp/T/, line.separator= -, java.vm.specification.vendor=Oracle Corporation, os.name=Mac OS X, sun.jnu.encoding=UTF-8, java.library.path=/Users/srihari.kalthireddy/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., surefire.test.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, java.specification.name=Java Platform API Specification, java.class.version=52.0, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, os.version=15.6, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, user.home=/Users/srihari.kalthireddy, user.timezone=Asia/Kolkata, java.awt.printerjob=sun.lwawt.macosx.CPrinterJob, java.specification.version=1.8, file.encoding=UTF-8, hibernate.connection.driver_class=org.h2.Driver, user.name=srihari.kalthireddy, java.class.path=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/test-classes:/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/classes:/Users/srihari.kalthireddy/projects/atom-hopper/hopper/target/core-1.2.35.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-server/1.1.2/abdera-server-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-parser/1.1.2/abdera-parser-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-impl/1.2.10/axiom-impl-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/ws/commons/axiom/axiom-api/1.2.10/axiom-api-1.2.10.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0.2/geronimo-activation_1.1_spec-1.0.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.6/geronimo-javamail_1.4_spec-1.6.jar:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar:/Users/srihari.kalthireddy/.m2/repository/jaxen/jaxen/1.1.1/jaxen-1.1.1.jar:/Users/srihari.kalthireddy/.m2/repository/xml-apis/xml-apis/1.4.01/xml-apis-1.4.01.jar:/Users/srihari.kalthireddy/.m2/repository/xerces/xercesImpl/2.12.2/xercesImpl-2.12.2.jar:/Users/srihari.kalthireddy/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/srihari.kalthireddy/.m2/repository/javax/mail/mail/1.4/mail-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/javax/activation/activation/1.1/activation-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-json/1.1.2/abdera-extensions-json-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-main/1.1.2/abdera-extensions-main-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-client/1.1.2/abdera-client-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-extensions-html/1.1.2/abdera-extensions-html-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/nu/validator/htmlparser/htmlparser/1.0.5/htmlparser-1.0.5.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-core/5.2.25.RELEASE/spring-core-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-jcl/5.2.25.RELEASE/spring-jcl-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-beans/5.2.25.RELEASE/spring-beans-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-context/5.2.25.RELEASE/spring-context-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-aop/5.2.25.RELEASE/spring-aop-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-expression/4.2.5.RELEASE/spring-expression-4.2.5.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/org/springframework/spring-web/5.2.25.RELEASE/spring-web-5.2.25.RELEASE.jar:/Users/srihari.kalthireddy/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-classic/1.2.0/logback-classic-1.2.0.jar:/Users/srihari.kalthireddy/.m2/repository/ch/qos/logback/logback-core/1.2.9/logback-core-1.2.9.jar:/Users/srihari.kalthireddy/.m2/repository/me/moocar/logback-gelf/0.9.6/logback-gelf-0.9.6.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-core/3.0.1/metrics-core-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/codahale/metrics/metrics-graphite/3.0.1/metrics-graphite-3.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-jdbc/7.0.27/tomcat-jdbc-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/tomcat/tomcat-juli/7.0.27/tomcat-juli-7.0.27.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.12.7/jackson-annotations-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.12.7.1/jackson-databind-2.12.7.1.jar:/Users/srihari.kalthireddy/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.12.7/jackson-core-2.12.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-core/4.1.3.Final/hibernate-core-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/antlr/antlr/2.7.7/antlr-2.7.7.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/logging/jboss-logging/3.1.0.GA/jboss-logging-3.1.0.GA.jar:/Users/srihari.kalthireddy/.m2/repository/org/jboss/spec/javax/transaction/jboss-transaction-api_1.1_spec/1.0.0.Final/jboss-transaction-api_1.1_spec-1.0.0.Final.jar:/Users/srihari.kalthireddy/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/javax/persistence/hibernate-jpa-2.0-api/1.0.1.Final/hibernate-jpa-2.0-api-1.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/common/hibernate-commons-annotations/4.0.1.Final/hibernate-commons-annotations-4.0.1.Final.jar:/Users/srihari.kalthireddy/.m2/repository/org/javassist/javassist/3.16.1-GA/javassist-3.16.1-GA.jar:/Users/srihari.kalthireddy/.m2/repository/com/h2database/h2/2.1.210/h2-2.1.210.jar:/Users/srihari.kalthireddy/.m2/repository/org/hibernate/hibernate-c3p0/4.1.3.Final/hibernate-c3p0-4.1.3.Final.jar:/Users/srihari.kalthireddy/.m2/repository/c3p0/c3p0/0.9.1/c3p0-0.9.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-core/1.1.2/abdera-core-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/abdera/abdera-i18n/1.1.2/abdera-i18n-1.1.2.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.1/geronimo-activation_1.0.2_spec-1.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/apache/geronimo/specs/geronimo-stax-api_1.0_spec/1.0.1/geronimo-stax-api_1.0_spec-1.0.1.jar:/Users/srihari.kalthireddy/.m2/repository/commons-codec/commons-codec/1.4/commons-codec-1.4.jar:/Users/srihari.kalthireddy/.m2/repository/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar:/Users/srihari.kalthireddy/.m2/repository/org/slf4j/slf4j-api/1.7.16/slf4j-api-1.7.16.jar:/Users/srihari.kalthireddy/.m2/repository/org/mockito/mockito-all/1.8.5/mockito-all-1.8.5.jar:/Users/srihari.kalthireddy/.m2/repository/junit/junit/4.13.1/junit-4.13.1.jar:/Users/srihari.kalthireddy/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:/Users/srihari.kalthireddy/.m2/repository/com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar:, hibernate.bytecode.use_reflection_optimizer=false, java.vm.specification.version=1.8, sun.arch.data.model=64, java.home=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre, sun.java.command=/Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefirebooter7093617471829027574.jar /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire7473032124132446789tmp /Users/srihari.kalthireddy/projects/atom-hopper/adapters/hibernate/target/surefire/surefire948785358173371727tmp, hibernate.dialect=org.hibernate.dialect.H2Dialect, java.specification.vendor=Oracle Corporation, user.language=en, awt.toolkit=sun.lwawt.macosx.LWCToolkit, java.vm.info=mixed mode, java.version=1.8.0_462, java.ext.dirs=/Users/srihari.kalthireddy/Library/Java/Extensions:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java, sun.boot.class.path=/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/resources.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/rt.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/sunrsasign.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jsse.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jce.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/charsets.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/lib/jfr.jar:/Users/srihari.kalthireddy/.sdkman/candidates/java/8.0.462-amzn/jre/classes, java.vendor=Amazon.com Inc., java.specification.maintenance.version=6, localRepository=/Users/srihari.kalthireddy/.m2/repository, file.separator=/, java.vendor.url.bug=https://github.com/corretto/corretto-8/issues/, hibernate.hbm2ddl.auto=update, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeBig, socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, sun.cpu.isalist=} -2025-09-02 14:29:58.201 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.201 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.201 [main] DEBUG o.h.i.f.i.DefaultIdentifierGeneratorFactory - Setting dialect [org.hibernate.dialect.H2Dialect] -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedEntry -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select EntryID from Entries where EntryID =? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistede_.EntryID, persistede_.CreationDate as Creation2_29_, persistede_.DateLastUpdated as DateLast3_29_, persistede_.EntryBody as EntryBody29_, persistede_.Feed as Feed29_ from Entries persistede_ where persistede_.EntryID=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Entries (CreationDate, DateLastUpdated, EntryBody, Feed, EntryID) values (?, ?, ?, ?, ?) -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Entries set CreationDate=?, DateLastUpdated=?, EntryBody=?, Feed=? where EntryID=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Entries where EntryID=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedCategory -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Term from Categories where Term =? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedc_.Term from Categories persistedc_ where persistedc_.Term=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Categories (Term) values (?) -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: null -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Categories where Term=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Static SQL for entity: org.atomhopper.adapter.jpa.PersistedFeed -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Version select: select Name from Feeds where Name =? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Snapshot select: select persistedf_.Name, persistedf_.FeedID as FeedID28_ from Feeds persistedf_ where persistedf_.Name=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Insert 0: insert into Feeds (FeedID, Name) values (?, ?) -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Update 0: update Feeds set FeedID=? where Name=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.entity.AbstractEntityPersister - Delete 0: delete from Feeds where Name=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedCategory.feedEntries -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (category, entryId) values (?, ?) -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set entryId=? where category=? and entryId=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where category=? and entryId=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where category=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedEntry.categories -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: insert into CategoryEntryReferences (entryId, category) values (?, ?) -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row update: update CategoryEntryReferences set category=? where entryId=? and category=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: delete from CategoryEntryReferences where entryId=? and category=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: delete from CategoryEntryReferences where entryId=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Static SQL for collection: org.atomhopper.adapter.jpa.PersistedFeed.entries -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row insert: update Entries set Feed=? where EntryID=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - Row delete: update Entries set Feed=null where Feed=? and EntryID=? -2025-09-02 14:29:58.202 [main] DEBUG o.h.p.c.AbstractCollectionPersister - One-shot delete: update Entries set Feed=null where Feed=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [NONE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [READ]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [UPGRADE_NOWAIT]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [FORCE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_READ]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_WRITE]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [PESSIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedEntry [OPTIMISTIC_FORCE_INCREMENT]: select persistede0_.EntryID as EntryID29_0_, persistede0_.CreationDate as Creation2_29_0_, persistede0_.DateLastUpdated as DateLast3_29_0_, persistede0_.EntryBody as EntryBody29_0_, persistede0_.Feed as Feed29_0_ from Entries persistede0_ where persistede0_.EntryID=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID29_1_, persistede0_.CreationDate as Creation2_29_1_, persistede0_.DateLastUpdated as DateLast3_29_1_, persistede0_.EntryBody as EntryBody29_1_, persistede0_.Feed as Feed29_1_, categories1_.entryId as entryId29_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term30_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedEntry: select persistede0_.EntryID as EntryID29_1_, persistede0_.CreationDate as Creation2_29_1_, persistede0_.DateLastUpdated as DateLast3_29_1_, persistede0_.EntryBody as EntryBody29_1_, persistede0_.Feed as Feed29_1_, categories1_.entryId as entryId29_3_, persistedc2_.Term as category3_, persistedc2_.Term as Term30_0_ from Entries persistede0_ left outer join CategoryEntryReferences categories1_ on persistede0_.EntryID=categories1_.entryId left outer join Categories persistedc2_ on categories1_.category=persistedc2_.Term where persistede0_.EntryID=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [NONE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [READ]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [UPGRADE_NOWAIT]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.203 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [FORCE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_READ]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_WRITE]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [PESSIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedCategory [OPTIMISTIC_FORCE_INCREMENT]: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedCategory: select persistedc0_.Term as Term30_0_ from Categories persistedc0_ where persistedc0_.Term=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [NONE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [READ]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [UPGRADE_NOWAIT]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [FORCE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_READ]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_WRITE]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [PESSIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? for update -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for entity org.atomhopper.adapter.jpa.PersistedFeed [OPTIMISTIC_FORCE_INCREMENT]: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_MERGE on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.204 [main] DEBUG org.hibernate.loader.Loader - Static select for action ACTION_REFRESH on entity org.atomhopper.adapter.jpa.PersistedFeed: select persistedf0_.Name as Name28_0_, persistedf0_.FeedID as FeedID28_0_ from Feeds persistedf0_ where persistedf0_.Name=? -2025-09-02 14:29:58.204 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedCategory.feedEntries: select feedentrie0_.category as category30_1_, feedentrie0_.entryId as entryId1_, persistede1_.EntryID as EntryID29_0_, persistede1_.CreationDate as Creation2_29_0_, persistede1_.DateLastUpdated as DateLast3_29_0_, persistede1_.EntryBody as EntryBody29_0_, persistede1_.Feed as Feed29_0_ from CategoryEntryReferences feedentrie0_ inner join Entries persistede1_ on feedentrie0_.entryId=persistede1_.EntryID where feedentrie0_.category=? -2025-09-02 14:29:58.204 [main] DEBUG o.h.l.c.BasicCollectionLoader - Static select for collection org.atomhopper.adapter.jpa.PersistedEntry.categories: select categories0_.entryId as entryId29_1_, categories0_.category as category1_, persistedc1_.Term as Term30_0_ from CategoryEntryReferences categories0_ inner join Categories persistedc1_ on categories0_.category=persistedc1_.Term where categories0_.entryId=? -2025-09-02 14:29:58.204 [main] DEBUG o.h.l.collection.OneToManyLoader - Static select for one-to-many org.atomhopper.adapter.jpa.PersistedFeed.entries: select entries0_.Feed as Feed28_1_, entries0_.EntryID as EntryID1_, entries0_.EntryID as EntryID29_0_, entries0_.CreationDate as Creation2_29_0_, entries0_.DateLastUpdated as DateLast3_29_0_, entries0_.EntryBody as EntryBody29_0_, entries0_.Feed as Feed29_0_ from Entries entries0_ where entries0_.Feed=? -2025-09-02 14:29:58.204 [main] DEBUG o.h.internal.SessionFactoryRegistry - Registering SessionFactory: 02e627d9-d969-421c-9b9f-b9827b9dea7e () -2025-09-02 14:29:58.204 [main] DEBUG o.h.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured -2025-09-02 14:29:58.204 [main] DEBUG o.h.internal.SessionFactoryImpl - Instantiated session factory -2025-09-02 14:29:58.204 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000228: Running hbm2ddl schema update -2025-09-02 14:29:58.204 [main] INFO o.h.tool.hbm2ddl.SchemaUpdate - HHH000102: Fetching database metadata -2025-09-02 14:29:58.204 [main] ERROR o.h.tool.hbm2ddl.SchemaUpdate - HHH000299: Could not complete schema update -java.lang.UnsupportedOperationException: The application must supply JDBC connections - at org.hibernate.service.jdbc.connections.internal.UserSuppliedConnectionProviderImpl.getConnection(UserSuppliedConnectionProviderImpl.java:62) - at org.hibernate.tool.hbm2ddl.SuppliedConnectionProviderConnectionHelper.prepare(SuppliedConnectionProviderConnectionHelper.java:51) - at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:194) - at org.hibernate.tool.hbm2ddl.SchemaUpdate.execute(SchemaUpdate.java:178) - at org.hibernate.internal.SessionFactoryImpl.(SessionFactoryImpl.java:497) - at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1744) - at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1782) - at org.atomhopper.hibernate.HibernateSessionManager.buildSessionFactory(HibernateSessionManager.java:29) - at org.atomhopper.hibernate.HibernateSessionManager.(HibernateSessionManager.java:16) - at org.atomhopper.hibernate.HibernateFeedRepository.(HibernateFeedRepository.java:36) - at org.atomhopper.hibernate.HibernateFeedRepositoryTest$WhenPerformingSimpleAction.setup(HibernateFeedRepositoryTest.java:58) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.RunBefores.invokeMethod(RunBefores.java:33) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:58.205 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named HQL queries -2025-09-02 14:29:58.205 [main] DEBUG o.h.internal.SessionFactoryImpl - Checking 0 named SQL queries -2025-09-02 14:29:58.205 [main] DEBUG o.h.s.internal.StatisticsInitiator - Statistics initialized [enabled=false] -2025-09-02 14:29:58.206 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Simple Action Session begin: 1756803598206 -2025-09-02 14:29:58.206 [main] DEBUG org.hibernate.internal.SessionImpl - Opened session at timestamp: 17568035982 -2025-09-02 14:29:58.206 [main] DEBUG o.h.e.t.spi.AbstractTransactionImpl - begin -2025-09-02 14:29:58.206 [main] DEBUG o.h.e.j.i.LogicalConnectionImpl - Obtaining JDBC connection -2025-09-02 14:29:58.206 [main] DEBUG o.a.h.HibernateFeedRepository - ~!$: Closing session. Elapsed time: 0 -2025-09-02 14:29:58.329 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:29:58.329 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null -2025-09-02 14:29:58.334 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: - Title: WoodSToX XML-processor - Symbolic name: null - Vendor: woodstox.codehaus.org - Version: 3.2.6 -2025-09-02 14:29:58.335 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox -2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA -2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 -2025-09-02 14:29:58.335 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] diff --git a/adapters/jdbc/logs/hopper.log b/adapters/jdbc/logs/hopper.log deleted file mode 100644 index 65fc7cd6..00000000 --- a/adapters/jdbc/logs/hopper.log +++ /dev/null @@ -1,31 +0,0 @@ -2025-09-02 14:30:10.353 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:10.354 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null -2025-09-02 14:30:10.359 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: - Title: WoodSToX XML-processor - Symbolic name: null - Vendor: woodstox.codehaus.org - Version: 3.2.6 -2025-09-02 14:30:10.370 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox -2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT -2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 -2025-09-02 14:30:10.370 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] -2025-09-02 14:30:10.376 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper -2025-09-02 14:30:10.377 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush -2025-09-02 14:30:10.377 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close -2025-09-02 14:30:10.423 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper -2025-09-02 14:30:10.423 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush -2025-09-02 14:30:10.423 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close -2025-09-02 14:30:10.458 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo -2025-09-02 14:30:10.458 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Retrying...(retryCount=0) -2025-09-02 14:30:10.471 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo -2025-09-02 14:30:10.471 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Retrying...(retryCount=1) -2025-09-02 14:30:10.483 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo -2025-09-02 14:30:10.484 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Got exception with sqlState=08001: org.springframework.dao.DataAccessResourceFailureException: foo; nested exception is org.postgresql.util.PSQLException: foo -2025-09-02 14:30:10.484 [main] WARN o.a.j.a.JdbcRetryOnFailureAdvice - Retrying...(retryCount=0) -2025-09-02 14:30:10.530 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:10.530 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null -2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA -2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 -2025-09-02 14:30:10.534 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] diff --git a/adapters/migration/logs/hopper.log b/adapters/migration/logs/hopper.log deleted file mode 100644 index 885301bf..00000000 --- a/adapters/migration/logs/hopper.log +++ /dev/null @@ -1,2 +0,0 @@ -2025-09-02 14:30:09.535 [main] ERROR o.a.m.adapter.MigrationFeedPublisher - Error writing entry to NEW feed:namespace/feed EntryId=urn:uuid:75f8cf3e-abe3-4825-a859-55f2aadbd0bc -2025-09-02 14:30:09.580 [main] ERROR o.a.m.adapter.MigrationFeedPublisher - Error writing entry to OLD feed:namespace/feed EntryId=urn:uuid:b1d96c44-180a-4b78-8722-3d80b89923bb diff --git a/adapters/mongodb/logs/hopper.log b/adapters/mongodb/logs/hopper.log deleted file mode 100644 index 10cd7d05..00000000 --- a/adapters/mongodb/logs/hopper.log +++ /dev/null @@ -1,21 +0,0 @@ -2025-09-02 14:30:02.983 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:02.988 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null -2025-09-02 14:30:02.993 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: - Title: WoodSToX XML-processor - Symbolic name: null - Vendor: woodstox.codehaus.org - Version: 3.2.6 -2025-09-02 14:30:02.994 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox -2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA -2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 -2025-09-02 14:30:02.994 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] -2025-09-02 14:30:03.040 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:03.040 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null -2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT -2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 -2025-09-02 14:30:03.044 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] -2025-09-02 14:30:03.048 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper -2025-09-02 14:30:03.049 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush -2025-09-02 14:30:03.049 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close diff --git a/adapters/postgres-adapter/logs/hopper.log b/adapters/postgres-adapter/logs/hopper.log deleted file mode 100644 index 724084a3..00000000 --- a/adapters/postgres-adapter/logs/hopper.log +++ /dev/null @@ -1,22 +0,0 @@ -2025-09-02 14:30:03.703 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLOutputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:03.704 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLOutputFactory is: null -2025-09-02 14:30:03.709 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: - Title: WoodSToX XML-processor - Symbolic name: null - Vendor: woodstox.codehaus.org - Version: 3.2.6 -2025-09-02 14:30:03.710 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox -2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLOutputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLOutputFactory for classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = DEFAULT -2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLOutFactory map for this configuration = 1 -2025-09-02 14:30:03.710 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [DEFAULT] -2025-09-02 14:30:03.715 [main] DEBUG org.apache.axiom.om.util.StAXUtils - XMLStreamWriter is org.apache.axiom.util.stax.dialect.WoodstoxStreamWriterWrapper -2025-09-02 14:30:03.716 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - Calling MTOMXMLStreamWriter.flush -2025-09-02 14:30:03.716 [main] DEBUG o.a.a.om.impl.MTOMXMLStreamWriter - close -2025-09-02 14:30:03.787 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:03.787 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null -2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA -2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 -2025-09-02 14:30:03.791 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] -2025-09-02 14:30:03.841 [main] WARN o.a.p.adapter.PostgresFeedSource - Marker must have a page direction specified as either "forward" or "backward" diff --git a/hopper/logs/hopper.log b/hopper/logs/hopper.log deleted file mode 100644 index 91c9f96e..00000000 --- a/hopper/logs/hopper.log +++ /dev/null @@ -1,792 +0,0 @@ -2025-09-02 14:29:56.491 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error -java.lang.RuntimeException: null - at org.atomhopper.abdera.FeedAdapter.getFeed(FeedAdapter.java:146) - at org.atomhopper.abdera.FeedAdapterTest$WhenGettingFeed.shouldReturnServerErrorOnFeedSourceException(FeedAdapterTest.java:162) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.512 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document -2025-09-02 14:29:56.518 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error -java.lang.RuntimeException: null - at org.atomhopper.abdera.FeedAdapter.getEntry(FeedAdapter.java:198) - at org.atomhopper.abdera.FeedAdapterTest$WhenGettingEntryFromFeed.shouldReturnServerErrorOnFeedSourceException(FeedAdapterTest.java:143) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.522 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document -2025-09-02 14:29:56.525 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error -java.lang.RuntimeException: null - at org.atomhopper.abdera.FeedAdapter.deleteEntry(FeedAdapter.java:187) - at org.atomhopper.abdera.FeedAdapterTest$WhenDeletingEntryFromFeed.shouldReturnServerErrorOnFeedPublisherException(FeedAdapterTest.java:124) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.536 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not Allowed -2025-09-02 14:29:56.542 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error -java.lang.RuntimeException: null - at org.atomhopper.abdera.FeedAdapter.putEntry(FeedAdapter.java:176) - at org.atomhopper.abdera.FeedAdapterTest$WhenPuttingEntryToFeed.shouldReturnServerErrorOnFeedPublisherException(FeedAdapterTest.java:98) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.545 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not Allowed -2025-09-02 14:29:56.549 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document -2025-09-02 14:29:56.551 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error -java.lang.RuntimeException: null - at org.atomhopper.abdera.FeedAdapter.postEntry(FeedAdapter.java:155) - at org.atomhopper.abdera.FeedAdapterTest$WhenPostingEntryToFeed.shouldReturnServerErrorOnFeedPublisherException(FeedAdapterTest.java:72) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.553 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not Allowed -2025-09-02 14:29:56.556 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document -2025-09-02 14:29:56.568 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document -2025-09-02 14:29:56.574 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Returning document -2025-09-02 14:29:56.581 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Not modified -2025-09-02 14:29:56.599 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Bad Request -2025-09-02 14:29:56.605 [main] ERROR o.a.abdera.WorkspaceProvider - null -java.lang.RuntimeException: null - at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) - at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequestWithTransactionalCollectionAdapter.shouldCompensateTransactionWhenExceptionOccurs(WorkspaceProviderTest.java:133) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.606 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error -java.lang.RuntimeException: null - at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) - at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequestWithTransactionalCollectionAdapter.shouldCompensateTransactionWhenExceptionOccurs(WorkspaceProviderTest.java:133) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.615 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown -2025-09-02 14:29:56.616 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown -2025-09-02 14:29:56.617 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown -2025-09-02 14:29:56.618 [main] ERROR o.a.abdera.WorkspaceProvider - null -java.lang.RuntimeException: null - at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) - at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequest.shouldReturnServerErrorWhenProcessingExceptionOccurs(WorkspaceProviderTest.java:86) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.618 [main] INFO o.a.a.protocol.server.ProviderHelper - Server error -java.lang.RuntimeException: null - at org.atomhopper.abdera.WorkspaceProvider.process(WorkspaceProvider.java:155) - at org.atomhopper.abdera.WorkspaceProviderTest$WhenProcessingRequest.shouldReturnServerErrorWhenProcessingExceptionOccurs(WorkspaceProviderTest.java:86) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.junit.runners.Suite.runChild(Suite.java:128) - at org.junit.runners.Suite.runChild(Suite.java:27) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.619 [main] DEBUG o.a.a.protocol.server.ProviderHelper - Unknown -2025-09-02 14:29:56.750 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.780 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/xml -2025-09-02 14:29:56.804 [main] DEBUG org.apache.axiom.om.util.StAXUtils - About to create XMLInputFactory implementation with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:29:56.804 [main] DEBUG org.apache.axiom.om.util.StAXUtils - The classloader for javax.xml.stream.XMLInputFactory is: null -2025-09-02 14:29:56.805 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - StAX implementation at jar:file:/Users/srihari.kalthireddy/.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.6/wstx-asl-3.2.6.jar!/ is: - Title: WoodSToX XML-processor - Symbolic name: null - Vendor: woodstox.codehaus.org - Version: 3.2.6 -2025-09-02 14:29:56.806 [main] DEBUG o.a.a.u.s.d.StAXDialectDetector - Detected StAX dialect: Woodstox -2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Created XMLInputFactory = class org.apache.axiom.util.stax.wrapper.ImmutableXMLInputFactory with classloader=sun.misc.Launcher$AppClassLoader@3d4eac69 -2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configuration = ABDERA -2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Size of XMLInputFactory map for this configuration = 1 -2025-09-02 14:29:56.807 [main] DEBUG org.apache.axiom.om.util.StAXUtils - Configurations for which factories have been cached = [ABDERA] -2025-09-02 14:29:56.812 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.813 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/xml -2025-09-02 14:29:56.813 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/xml: java.lang.ArrayIndexOutOfBoundsException -org.apache.abdera.parser.ParseException: java.lang.ArrayIndexOutOfBoundsException - at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:128) - at org.apache.abdera.util.AbstractParser.parse(AbstractParser.java:77) - at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:179) - at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testEmptyXmlInput(UnifiedParserTest.java:230) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -Caused by: java.lang.ArrayIndexOutOfBoundsException: null - at java.lang.System.arraycopy(Native Method) - at java.io.PushbackInputStream.unread(PushbackInputStream.java:235) - at org.apache.abdera.i18n.text.io.DynamicPushbackInputStream.unread(DynamicPushbackInputStream.java:91) - at org.apache.abdera.i18n.text.io.PeekAheadInputStream.peek(PeekAheadInputStream.java:61) - at org.apache.abdera.i18n.text.io.PeekAheadInputStream.peek(PeekAheadInputStream.java:52) - at org.apache.abdera.i18n.text.io.CharsetSniffingInputStream.detectEncoding(CharsetSniffingInputStream.java:110) - at org.apache.abdera.parser.stax.util.FOMSniffingInputStream.detectEncoding(FOMSniffingInputStream.java:39) - at org.apache.abdera.i18n.text.io.CharsetSniffingInputStream.(CharsetSniffingInputStream.java:81) - at org.apache.abdera.i18n.text.io.CharsetSniffingInputStream.(CharsetSniffingInputStream.java:74) - at org.apache.abdera.parser.stax.util.FOMSniffingInputStream.(FOMSniffingInputStream.java:35) - at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:107) - ... 37 common frames omitted -2025-09-02 14:29:56.814 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.814 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json -2025-09-02 14:29:56.902 [main] ERROR o.a.abdera.parser.JsonAtomParser - IOException while parsing JSON from InputStream -com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false') - at [Source: (ByteArrayInputStream); line: 1, column: 2] - at com.fasterxml.jackson.core.JsonParser._constructError(JsonParser.java:2337) - at com.fasterxml.jackson.core.base.ParserMinimalBase._reportError(ParserMinimalBase.java:710) - at com.fasterxml.jackson.core.base.ParserMinimalBase._reportUnexpectedChar(ParserMinimalBase.java:635) - at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._handleUnexpectedValue(UTF8StreamJsonParser.java:2691) - at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._nextTokenNotInObject(UTF8StreamJsonParser.java:870) - at com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken(UTF8StreamJsonParser.java:762) - at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4684) - at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) - at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) - at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) - at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) - at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) - at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testMismatchedJsonContentTypeWithXmlBody(UnifiedParserTest.java:211) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.902 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/json: Failed to parse JSON from InputStream -org.apache.abdera.parser.ParseException: Failed to parse JSON from InputStream - at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:63) - at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) - at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testMismatchedJsonContentTypeWithXmlBody(UnifiedParserTest.java:211) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -Caused by: com.fasterxml.jackson.core.JsonParseException: Unexpected character ('<' (code 60)): expected a valid value (JSON String, Number, Array, Object or token 'null', 'true' or 'false') - at [Source: (ByteArrayInputStream); line: 1, column: 2] - at com.fasterxml.jackson.core.JsonParser._constructError(JsonParser.java:2337) - at com.fasterxml.jackson.core.base.ParserMinimalBase._reportError(ParserMinimalBase.java:710) - at com.fasterxml.jackson.core.base.ParserMinimalBase._reportUnexpectedChar(ParserMinimalBase.java:635) - at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._handleUnexpectedValue(UTF8StreamJsonParser.java:2691) - at com.fasterxml.jackson.core.json.UTF8StreamJsonParser._nextTokenNotInObject(UTF8StreamJsonParser.java:870) - at com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken(UTF8StreamJsonParser.java:762) - at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4684) - at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) - at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) - at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) - at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) - ... 36 common frames omitted -2025-09-02 14:29:56.903 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.903 [main] ERROR o.a.abdera.parser.UnifiedParser - Unsupported Content-Type: text/plain -2025-09-02 14:29:56.904 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.905 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json -2025-09-02 14:29:56.936 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO -2025-09-02 14:29:56.939 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO -2025-09-02 14:29:56.942 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.943 [main] ERROR o.a.abdera.parser.UnifiedParser - Content-Type header is missing or empty -2025-09-02 14:29:56.943 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.944 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json -2025-09-02 14:29:56.944 [main] ERROR o.a.abdera.parser.JsonAtomParser - IOException while parsing JSON from InputStream -com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input - at [Source: (ByteArrayInputStream); line: 1, column: 0] - at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:59) - at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4688) - at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) - at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) - at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) - at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) - at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) - at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testEmptyJsonInput(UnifiedParserTest.java:224) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -2025-09-02 14:29:56.944 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/json: Failed to parse JSON from InputStream -org.apache.abdera.parser.ParseException: Failed to parse JSON from InputStream - at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:63) - at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:176) - at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testEmptyJsonInput(UnifiedParserTest.java:224) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -Caused by: com.fasterxml.jackson.databind.exc.MismatchedInputException: No content to map due to end-of-input - at [Source: (ByteArrayInputStream); line: 1, column: 0] - at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:59) - at com.fasterxml.jackson.databind.ObjectMapper._initForReading(ObjectMapper.java:4688) - at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4586) - at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3585) - at org.atomhopper.abdera.parser.JsonToPojo.fromInputStream(JsonToPojo.java:15) - at org.atomhopper.abdera.parser.JsonAtomParser.parse(JsonAtomParser.java:58) - ... 36 common frames omitted -2025-09-02 14:29:56.945 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.946 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: text/json -2025-09-02 14:29:56.946 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO -2025-09-02 14:29:56.947 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO -2025-09-02 14:29:56.948 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.948 [main] ERROR o.a.abdera.parser.UnifiedParser - Content-Type header is missing or empty -2025-09-02 14:29:56.949 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.949 [main] WARN o.a.abdera.parser.UnifiedParser - InputStream is null -2025-09-02 14:29:56.950 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.950 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json; charset=UTF-8 -2025-09-02 14:29:56.951 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO -2025-09-02 14:29:56.952 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO -2025-09-02 14:29:56.952 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.953 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/atom+xml -2025-09-02 14:29:56.953 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.954 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/atom+xml -2025-09-02 14:29:56.955 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.955 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/atom+xml; charset=UTF-8; boundary=something -2025-09-02 14:29:56.956 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.957 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: application/xml -2025-09-02 14:29:56.957 [main] ERROR o.a.abdera.parser.UnifiedParser - Error parsing with Content-Type application/xml: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '{' (code 123) in prolog; expected '<' - at [row,col {unknown-source}]: [1,1] -org.apache.abdera.parser.ParseException: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '{' (code 123) in prolog; expected '<' - at [row,col {unknown-source}]: [1,1] - at org.apache.abdera.parser.stax.FOMBuilder.next(FOMBuilder.java:244) - at org.apache.abdera.parser.stax.FOMBuilder.getFomDocument(FOMBuilder.java:317) - at org.apache.abdera.parser.stax.FOMParser.getDocument(FOMParser.java:79) - at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:191) - at org.apache.abdera.parser.stax.FOMParser.parse(FOMParser.java:124) - at org.apache.abdera.util.AbstractParser.parse(AbstractParser.java:77) - at org.atomhopper.abdera.parser.UnifiedParser.parseWithContentType(UnifiedParser.java:179) - at org.atomhopper.util.jsonparsingwork.UnifiedParserTest.testMismatchedXmlContentTypeWithJsonBody(UnifiedParserTest.java:217) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59) - at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) - at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56) - at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) - at org.junit.internal.runners.statements.ExpectException.evaluate(ExpectException.java:19) - at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100) - at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103) - at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63) - at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331) - at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79) - at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329) - at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66) - at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293) - at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306) - at org.junit.runners.ParentRunner.run(ParentRunner.java:413) - at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:35) - at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:115) - at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:97) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.lang.reflect.Method.invoke(Method.java:498) - at org.apache.maven.surefire.booter.ProviderFactory$ClassLoaderProxy.invoke(ProviderFactory.java:103) - at com.sun.proxy.$Proxy0.invoke(Unknown Source) - at org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:150) - at org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:91) - at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:69) -Caused by: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '{' (code 123) in prolog; expected '<' - at [row,col {unknown-source}]: [1,1] - at com.ctc.wstx.sr.StreamScanner.throwUnexpectedChar(StreamScanner.java:648) - at com.ctc.wstx.sr.BasicStreamReader.nextFromProlog(BasicStreamReader.java:2047) - at com.ctc.wstx.sr.BasicStreamReader.next(BasicStreamReader.java:1069) - at org.apache.axiom.util.stax.wrapper.XMLStreamReaderWrapper.next(XMLStreamReaderWrapper.java:225) - at org.apache.abdera.parser.stax.FOMBuilder.getNextElementToParse(FOMBuilder.java:149) - at org.apache.abdera.parser.stax.FOMBuilder.next(FOMBuilder.java:174) - ... 41 common frames omitted -2025-09-02 14:29:56.958 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.958 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to XML parser for Content-Type: text/xml -2025-09-02 14:29:56.959 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.960 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/atom+json -2025-09-02 14:29:56.960 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO -2025-09-02 14:29:56.961 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO -2025-09-02 14:29:56.962 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.962 [main] WARN o.a.abdera.parser.UnifiedParser - Reader is null -2025-09-02 14:29:56.963 [main] INFO o.a.abdera.parser.UnifiedParser - UnifiedParser is initialized with XMLParser: FOMParser -2025-09-02 14:29:56.963 [main] DEBUG o.a.abdera.parser.UnifiedParser - Routing to JSON parser for Content-Type: application/json -2025-09-02 14:29:56.963 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Parsing JSON from Reader -2025-09-02 14:29:56.964 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully parsed JSON to POJO from Reader -2025-09-02 14:29:56.965 [main] DEBUG o.a.abdera.parser.JsonAtomParser - Successfully created Abdera Document from POJO -2025-09-02 14:29:56.992 [main] ERROR o.a.config.WorkspaceConfigProcessor - Feed 'Testing Feed Archive' cannot be tagged as an archived feed & not have a current-feed declared. -2025-09-02 14:29:57.019 [main] ERROR o.a.config.WorkspaceConfigProcessor - Feed 'Testing Feed Archive' cannot be a non-archived feed & have a current-feed declared. -2025-09-02 14:29:57.027 [main] ERROR o.a.config.WorkspaceConfigProcessor - Feed 'Testing Feed Archive' cannot be tagged as an archived feed & have an archive-feed declared. From 23f20bdc96f2bbc22f6d69db62f9d65143a70cc0 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 16:26:24 +0530 Subject: [PATCH 09/14] Fix Docker build context issue - Update Dockerfile COPY command to use correct path for start.sh - Build context is root directory, so need to specify docker/start.sh --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index de39e600..03490d08 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -36,7 +36,7 @@ RUN mkdir -p "${CATALINA_HOME}" "${AH_HOME}" /etc/atomhopper/ /var/log/atomhoppe WORKDIR ${AH_HOME} COPY --from=tomcat /usr/local/tomcat ${CATALINA_HOME} -COPY start.sh . +COPY docker/start.sh . RUN apk --no-cache add curl unzip \ && echo "Downloading AtomHopper ${AH_VERSION} from GitHub Packages..." \ From 5acd3401175ae6ec1c4d36132c4bd88f436aace1 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 16:29:02 +0530 Subject: [PATCH 10/14] Add debugging for GitHub Packages download issue - Add verbose curl output to see authentication and response details - Add file type checking and content inspection - Add validation before attempting to unzip - Show actual content if download fails --- docker/Dockerfile | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 03490d08..30e8fffd 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -38,11 +38,25 @@ WORKDIR ${AH_HOME} COPY --from=tomcat /usr/local/tomcat ${CATALINA_HOME} COPY docker/start.sh . -RUN apk --no-cache add curl unzip \ +RUN apk --no-cache add curl unzip file \ && echo "Downloading AtomHopper ${AH_VERSION} from GitHub Packages..." \ - && curl -f -u ${GITHUB_ACTOR}:${GITHUB_TOKEN} -o atomhopper.war \ + && echo "URL: https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ + && curl -v -u ${GITHUB_ACTOR}:${GITHUB_TOKEN} -o atomhopper.war \ "https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ - && echo "Download completed, extracting configuration files..." \ + && echo "Download completed. File info:" \ + && ls -la atomhopper.war \ + && file atomhopper.war \ + && echo "First 200 bytes of downloaded file:" \ + && head -c 200 atomhopper.war \ + && echo "" \ + && echo "Checking if file is a valid ZIP/WAR..." \ + && if ! unzip -t atomhopper.war > /dev/null 2>&1; then \ + echo "ERROR: Downloaded file is not a valid WAR/ZIP file"; \ + echo "Content of downloaded file:"; \ + cat atomhopper.war; \ + exit 1; \ + fi \ + && echo "Extracting configuration files..." \ && unzip atomhopper.war META-INF/application-context.xml META-INF/template-logback.xml WEB-INF/classes/META-INF/atom-server.cfg.xml -d . \ && mv META-INF/application-context.xml WEB-INF/classes/META-INF/atom-server.cfg.xml /etc/atomhopper/ \ && mv META-INF/template-logback.xml /etc/atomhopper/logback.xml \ From f34a1e220116c8ae142918a32db864ca456ac9c4 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 16:36:53 +0530 Subject: [PATCH 11/14] CF-4251:docker image for postgreSQL array fix --- docker/Dockerfile | 43 +++++++---------------------------------- docker/README.md | 49 ++++++++++------------------------------------- 2 files changed, 17 insertions(+), 75 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 30e8fffd..249767c4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,19 +3,9 @@ FROM tomcat:9.0.41-jdk8 as tomcat FROM adoptopenjdk/openjdk8:alpine-slim -# Build arguments for GitHub authentication -ARG GITHUB_TOKEN -ARG GITHUB_ACTOR - -# Validate that authentication arguments are provided -RUN if [ -z "$GITHUB_TOKEN" ] || [ -z "$GITHUB_ACTOR" ]; then \ - echo "ERROR: GITHUB_TOKEN and GITHUB_ACTOR build arguments are required for GitHub Packages authentication"; \ - exit 1; \ - fi - LABEL maintainer="AtomHopperTeam@rackspace.com" \ #Atom Hopper version - version="1.2.35" \ + version="1.2.33" \ description="Docker image for Atom Hopper" #The database type @@ -26,46 +16,27 @@ ENV DB_TYPE=H2 \ DB_PASSWORD= \ #Database Host:Port DB_HOST=h2 \ - AH_VERSION=1.2.35 \ + AH_VERSION=1.2.33 \ CATALINA_HOME=/opt/tomcat \ AH_HOME=/opt/atomhopper \ PATH=${PATH}:${CATALINA_HOME}/bin:${AH_HOME} -RUN mkdir -p "${CATALINA_HOME}" "${AH_HOME}" /etc/atomhopper/ /var/log/atomhopper/ +RUN mkdir -p "${CATALINA_HOME}" "${AH_HOME}" /etc/atomhopper/ /var/log/atomhopper/ WORKDIR ${AH_HOME} COPY --from=tomcat /usr/local/tomcat ${CATALINA_HOME} -COPY docker/start.sh . +COPY start.sh . -RUN apk --no-cache add curl unzip file \ - && echo "Downloading AtomHopper ${AH_VERSION} from GitHub Packages..." \ - && echo "URL: https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ - && curl -v -u ${GITHUB_ACTOR}:${GITHUB_TOKEN} -o atomhopper.war \ - "https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ - && echo "Download completed. File info:" \ - && ls -la atomhopper.war \ - && file atomhopper.war \ - && echo "First 200 bytes of downloaded file:" \ - && head -c 200 atomhopper.war \ - && echo "" \ - && echo "Checking if file is a valid ZIP/WAR..." \ - && if ! unzip -t atomhopper.war > /dev/null 2>&1; then \ - echo "ERROR: Downloaded file is not a valid WAR/ZIP file"; \ - echo "Content of downloaded file:"; \ - cat atomhopper.war; \ - exit 1; \ - fi \ - && echo "Extracting configuration files..." \ +RUN apk --no-cache add curl \ + && curl -o atomhopper.war https://maven.research.rackspacecloud.com/content/repositories/releases/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war \ && unzip atomhopper.war META-INF/application-context.xml META-INF/template-logback.xml WEB-INF/classes/META-INF/atom-server.cfg.xml -d . \ && mv META-INF/application-context.xml WEB-INF/classes/META-INF/atom-server.cfg.xml /etc/atomhopper/ \ && mv META-INF/template-logback.xml /etc/atomhopper/logback.xml \ && mv atomhopper.war ${CATALINA_HOME}/webapps/ROOT.war \ && rm -rf META-INF WEB-INF \ - && chmod +x ${AH_HOME}/start.sh \ - && echo "AtomHopper ${AH_VERSION} setup completed successfully" + && chmod +x ${AH_HOME}/start.sh EXPOSE 8080 CMD ["start.sh"] - diff --git a/docker/README.md b/docker/README.md index cef88ac8..9fb7472c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,36 +1,10 @@ -# docker build image and run the container - -## Building the Docker Image - -Your current directory should be pointing to ***atom-hopper/docker***. - -### Prerequisites -The Docker build now downloads AtomHopper from GitHub Packages, which requires authentication. You need: -- A GitHub Personal Access Token with `packages:read` permission -- Your GitHub username - -### Build Command -Run the following command to build an image with GitHub authentication: -```bash -docker build \ - --build-arg GITHUB_TOKEN=your_github_token \ - --build-arg GITHUB_ACTOR=your_github_username \ - -t atomhopper:latest-alpine . +# docker build image and run the conatiner +Your current direcotry should be pointing to ***atom-hopper/docker***. +Run the following command to build an image. ``` - -### Alternative: Using Environment Variables -You can also set environment variables and build: -```bash -export GITHUB_TOKEN=your_github_token -export GITHUB_ACTOR=your_github_username -docker build \ - --build-arg GITHUB_TOKEN=$GITHUB_TOKEN \ - --build-arg GITHUB_ACTOR=$GITHUB_ACTOR \ - -t atomhopper:latest-alpine . -``` -## Running the Container - -You can use the following command to run a container by providing the appropriate values to the variables. +$docker build -t atomhopper:latest-alpine . +``` +You can use the following command to run a container by provinding the appropriate values to the variables. ``` $docker run -d --name [Conatiner_Name] -p 8080:8080 -e DB_TYPE=[Database_Type (PostgreSQL, MySQL)] -e DB_USER=[Database_Username] -e DB_PASSWORD=[Database_Password] -e DB_HOST=[IP:PORT] atomhopper:latest-alpine ``` @@ -43,19 +17,16 @@ Test the sample feed at http://localhost:8080/namespace/feed H2 is the default databse configured to be used. The databse file for this is present under */opt/atomhopper* -Following environment variables are set by default +Following environment variables are set by default ``` JAVA_HOME "/opt/java/openjdk8/jre" CATALINA_HOME "/opt/tomcat" AH_HOME "/opt/atomhopper" -AH_VERSION "1.2.35" +AH_VERSION "1.2.33" ``` For specific databse configuration of your choice (PostgreSQL,MySQL) provide values for the variables DB_TYPE, DB_USER, DB_PASSWORD and DB_HOST -Example of running with a PostgreSQL databse hosted externally. +Example of running with a PostgreSQL databse hosted externally. ``` $docker run -d --name atomhopper -p 8080:8080 -e DB_TYPE=PostgreSQL -e DB_USER=postgresql -e DB_PASSWORD=postgresql -e DB_HOST=10.0.0.1:5432 atomhopper:latest-alpine -``` - - - +``` \ No newline at end of file From 410d37ae9d369b28ef091c3fa8ae87caaa6e5b39 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 16:37:46 +0530 Subject: [PATCH 12/14] CF-4251:docker image for postgreSQL array fix --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 249767c4..8149e821 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -26,7 +26,7 @@ RUN mkdir -p "${CATALINA_HOME}" "${AH_HOME}" /etc/atomhopper/ /var/log/atomhoppe WORKDIR ${AH_HOME} COPY --from=tomcat /usr/local/tomcat ${CATALINA_HOME} -COPY start.sh . +COPY docker/start.sh . RUN apk --no-cache add curl \ && curl -o atomhopper.war https://maven.research.rackspacecloud.com/content/repositories/releases/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war \ From 5c58ed644724cbf443917c41aa517adca9754cc4 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 18:13:54 +0530 Subject: [PATCH 13/14] Fix ECS container startup issue - Use absolute path in CMD instruction: /opt/atomhopper/start.sh - Restore GitHub Packages authentication setup - Update version to 1.2.35 - Add verification of start.sh file permissions - Ensure proper file copying and executable permissions --- docker/Dockerfile | 42 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8149e821..432ba196 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,9 +3,19 @@ FROM tomcat:9.0.41-jdk8 as tomcat FROM adoptopenjdk/openjdk8:alpine-slim +# Build arguments for GitHub authentication +ARG GITHUB_TOKEN +ARG GITHUB_ACTOR + +# Validate that authentication arguments are provided +RUN if [ -z "$GITHUB_TOKEN" ] || [ -z "$GITHUB_ACTOR" ]; then \ + echo "ERROR: GITHUB_TOKEN and GITHUB_ACTOR build arguments are required for GitHub Packages authentication"; \ + exit 1; \ + fi + LABEL maintainer="AtomHopperTeam@rackspace.com" \ #Atom Hopper version - version="1.2.33" \ + version="1.2.35" \ description="Docker image for Atom Hopper" #The database type @@ -16,7 +26,7 @@ ENV DB_TYPE=H2 \ DB_PASSWORD= \ #Database Host:Port DB_HOST=h2 \ - AH_VERSION=1.2.33 \ + AH_VERSION=1.2.35 \ CATALINA_HOME=/opt/tomcat \ AH_HOME=/opt/atomhopper \ PATH=${PATH}:${CATALINA_HOME}/bin:${AH_HOME} @@ -28,15 +38,35 @@ WORKDIR ${AH_HOME} COPY --from=tomcat /usr/local/tomcat ${CATALINA_HOME} COPY docker/start.sh . -RUN apk --no-cache add curl \ - && curl -o atomhopper.war https://maven.research.rackspacecloud.com/content/repositories/releases/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war \ +RUN apk --no-cache add curl unzip file \ + && echo "Downloading AtomHopper ${AH_VERSION} from GitHub Packages..." \ + && echo "URL: https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ + && curl -v -u ${GITHUB_ACTOR}:${GITHUB_TOKEN} -o atomhopper.war \ + "https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ + && echo "Download completed. File info:" \ + && ls -la atomhopper.war \ + && file atomhopper.war \ + && echo "First 200 bytes of downloaded file:" \ + && head -c 200 atomhopper.war \ + && echo "" \ + && echo "Checking if file is a valid ZIP/WAR..." \ + && if ! unzip -t atomhopper.war > /dev/null 2>&1; then \ + echo "ERROR: Downloaded file is not a valid WAR/ZIP file"; \ + echo "Content of downloaded file:"; \ + cat atomhopper.war; \ + exit 1; \ + fi \ + && echo "Extracting configuration files..." \ && unzip atomhopper.war META-INF/application-context.xml META-INF/template-logback.xml WEB-INF/classes/META-INF/atom-server.cfg.xml -d . \ && mv META-INF/application-context.xml WEB-INF/classes/META-INF/atom-server.cfg.xml /etc/atomhopper/ \ && mv META-INF/template-logback.xml /etc/atomhopper/logback.xml \ && mv atomhopper.war ${CATALINA_HOME}/webapps/ROOT.war \ && rm -rf META-INF WEB-INF \ - && chmod +x ${AH_HOME}/start.sh + && chmod +x ${AH_HOME}/start.sh \ + && echo "Verifying start.sh file..." \ + && ls -la ${AH_HOME}/start.sh \ + && echo "AtomHopper ${AH_VERSION} setup completed successfully" EXPOSE 8080 -CMD ["start.sh"] +CMD ["/opt/atomhopper/start.sh"] From 486d4b6dae42213ee67736731d2ad4ab62889e07 Mon Sep 17 00:00:00 2001 From: Srihari K Date: Tue, 2 Sep 2025 18:22:24 +0530 Subject: [PATCH 14/14] Fix GitHub Packages download redirect issue - Add -L flag to curl to follow redirects from GitHub Packages - GitHub Packages returns 302 redirect to AWS S3 for actual file download - Simplify debugging output while keeping essential verification - This should now properly download the WAR file instead of HTML redirect page --- docker/Dockerfile | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 432ba196..c257b449 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -41,21 +41,12 @@ COPY docker/start.sh . RUN apk --no-cache add curl unzip file \ && echo "Downloading AtomHopper ${AH_VERSION} from GitHub Packages..." \ && echo "URL: https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ - && curl -v -u ${GITHUB_ACTOR}:${GITHUB_TOKEN} -o atomhopper.war \ + && curl -L -v -u ${GITHUB_ACTOR}:${GITHUB_TOKEN} -o atomhopper.war \ "https://maven.pkg.github.com/rackerlabs/atom-hopper/org/atomhopper/atomhopper/${AH_VERSION}/atomhopper-${AH_VERSION}.war" \ - && echo "Download completed. File info:" \ + && echo "Download completed. Verifying WAR file..." \ && ls -la atomhopper.war \ && file atomhopper.war \ - && echo "First 200 bytes of downloaded file:" \ - && head -c 200 atomhopper.war \ - && echo "" \ - && echo "Checking if file is a valid ZIP/WAR..." \ - && if ! unzip -t atomhopper.war > /dev/null 2>&1; then \ - echo "ERROR: Downloaded file is not a valid WAR/ZIP file"; \ - echo "Content of downloaded file:"; \ - cat atomhopper.war; \ - exit 1; \ - fi \ + && unzip -t atomhopper.war > /dev/null \ && echo "Extracting configuration files..." \ && unzip atomhopper.war META-INF/application-context.xml META-INF/template-logback.xml WEB-INF/classes/META-INF/atom-server.cfg.xml -d . \ && mv META-INF/application-context.xml WEB-INF/classes/META-INF/atom-server.cfg.xml /etc/atomhopper/ \